STK Vector Geometry ToolSend comments on this topic.
IAgCrdnVectorCross Interface

Description

The vector cross product of two vectors.

Public Properties

Public Property DimensionReturns a unit of measure, i.e. 'AngleUnit', 'DistanceUnit', etc.
Public Property FromSpecify one of the two vectors which define the vector cross product.
Public Property IsNormalizedWhether to convert the cross product of two vectors to a unit vector.
Public Property ToSpecify the second of the two vectors which define the vector cross product.

Interfaces

CoClasses that Implement IAgCrdnVectorCross

Example

Creates a vector defined as a cross product of vectors A and B.
[C#]
//Create a vector defined as cross product of vectors A and B.
IAgCrdnVectorCross vector = provider.Vectors.Factory.CreateCrossProductVector(
    "CrossVector", VectorA, VectorB);
Creates a vector defined as a cross product of vectors A and B.
[Visual Basic .NET]
'Create a vector defined as cross product of vectors A and B.
Dim vector As IAgCrdnVectorCross = provider.Vectors.Factory.CreateCrossProductVector("CrossVector", VectorA, VectorB)
© 2024 Analytical Graphics, Inc. All Rights Reserved.