Computes the triangulation for a box of the specified size, centered at the origin.
[Visual Basic .NET] |
---|
Public Function Compute( _ ByVal Size As System.Array _ ) As IAgStkGraphicsSolidTriangulatorResult |
[C#] |
---|
public IAgStkGraphicsSolidTriangulatorResult Compute( System.Array Size ); |
[Managed C++] |
---|
public: IAgStkGraphicsSolidTriangulatorResult^ Compute( System::Array ^ Size ); |
[Unmanaged C++] |
---|
public: HRESULT Compute( SAFEARRAY * * Size, IAgStkGraphicsSolidTriangulatorResult ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsSolidTriangulatorResult compute( AgSafeArray Size ); |
[Python - STK API ] |
---|
def Compute(self, Size:list) -> "IAgStkGraphicsSolidTriangulatorResult": |
- Size
- An array containing the size along each axis of the box. The sizes are expected in the order x, y, z to correspond to the respective axis.
Shows the format of the Size parameter when computing using a box triangulator.
[C#] | ||
---|---|---|
|
Shows the format of the Size parameter when computing using a box triangulator.
[Visual Basic .NET] | ||
---|---|---|
|