Creates a VGT vector using specified name, description and type.
[Visual Basic .NET] |
---|
Public Function Create( _ ByVal VectorName As String, _ ByVal Description As String, _ ByVal VectorType As AgECrdnVectorType _ ) As IAgCrdnVector |
[C#] |
---|
public IAgCrdnVector Create( string VectorName, string Description, AgECrdnVectorType VectorType ); |
[Managed C++] |
---|
public: IAgCrdnVector^ Create( String __gc ^ VectorName, String __gc ^ Description, AgECrdnVectorType VectorType ); |
[Unmanaged C++] |
---|
public: HRESULT Create( BSTR VectorName, BSTR Description, AgECrdnVectorType VectorType, IAgCrdnVector ** ppRetVal ); |
[Java] |
---|
public IAgCrdnVector create( String VectorName, String Description, AgECrdnVectorType VectorType ); |
[Python - STK API ] |
---|
def Create(self, VectorName:str, Description:str, VectorType:"AgECrdnVectorType") -> "IAgCrdnVector": |
- VectorName
- Specify a component name.
- Description
- Specify a component description.
- VectorType
- Specify a component type.
Spaces and most punctuation ( except for "-_().") cannot be used as a part of a component name when creating new components via VGT API.
Create a vector.perpendicular to the plane in which the angle is defined.
[C#] | ||
---|---|---|
|
Create a vector.perpendicular to the plane in which the angle is defined.
[Visual Basic .NET] | ||
---|---|---|
|