Lines Matching refs:plug

36 …    static bool   getPlugConnectedTo ( const MObject& node, const String& attribute, MPlug& plug );
38 static bool getPlugConnectedTo ( const MPlug& inPlug, MPlug& plug );
39 …atic bool getPlugArrayConnectedTo ( const MObject& node, const MString& attribute, MPlug& plug );
40 static MObject getNodeConnectedTo ( const MPlug& plug );
49 …static bool hasConnection ( const MPlug& plug, bool asSource = true, bool asDestination = true );
71 static bool getPlugValue ( const MPlug& plug, bool& value );
72 static bool getPlugValue ( const MPlug& plug, MMatrix& value );
73 static bool getPlugValue ( const MPlug& plug, MColor& value );
74 static bool getPlugValue ( const MPlug& plug, int& value );
75 static bool getPlugValue ( const MPlug& plug, uint32& value );
76 static bool getPlugValue ( const MPlug& plug, short& value );
77 static bool getPlugValue ( const MPlug& plug, uint16& value );
78 static bool getPlugValue ( const MPlug& plug, char& value );
79 static bool getPlugValue ( const MPlug& plug, uint8& value );
80 static bool getPlugValue ( const MPlug& plug, float& x );
81 static bool getPlugValue ( const MPlug& plug, float& x, float& y );
82 static bool getPlugValue ( const MPlug& plug, float& x, float& y, float& z );
83 static bool getPlugValue ( const MPlug& plug, MVector& value );
84 static bool getPlugValue ( const MPlug& plug, int& enumValue, MString& enumName );
85 static bool getPlugValue ( const MPlug& plug, MObject& value );
87 … static void getPlugValue ( const MPlug& plug, MStringArray& output, MStatus* status = NULL );
89 static bool setPlugValue ( MPlug& plug, const MVector& value );
90 static bool setPlugValue ( MPlug& plug, const MMatrix& value );
91 static bool setPlugValue ( MPlug& plug, const MColor& value );
92 static bool setPlugValue ( MPlug& plug, const String& value );
94 static bool setPlugValue ( MPlug& plug, const String& value );
96 static bool setPlugValue ( MPlug& plug, const MString& value ) in setPlugValue() argument
98 return plug.setValue ( const_cast<MString&> ( value ) ) == MStatus::kSuccess; in setPlugValue()
101 static bool setPlugValue ( MPlug& plug, float value );
102 static bool setPlugValue ( MPlug& plug, double value );
103 static bool setPlugValue ( MPlug& plug, float x, float y );
104 static bool setPlugValue ( MPlug& plug, int value );
106 static bool setPlugValue ( MPlug& plug, int32 value ) in setPlugValue() argument
108 return setPlugValue ( plug, ( int ) value ); in setPlugValue()
112 static bool setPlugValue ( MPlug& plug, bool value );
113 static bool setPlugValue ( MPlug& plug, MStringArray& stringArray );
127 static void setArrayPlugSize ( MPlug& plug, uint size );
135 static MObject createAnimationCurve ( const MPlug& plug, const char* curveType );
136 static bool plugHasAnimation ( const MPlug& plug );
137 static MObject createExpression ( const MPlug& plug, const MString& expression );