Plane Method

Description
Defines a Plane.

Syntax
Sub Plane (PlaneNumber As Integer, Point As SpelPoint)
Sub Plane (PlaneNumber As Integer, X As Single, Y As Single, Z As Single, U As Single, V As Single, W As Single)

Parameters

  • PlaneNumber
    An integer expression from 1 to 15 indicating which of 15 planes to define.
  • Point
    Point data indicating the coordinate data of the approach check plane
  • X
    The X coordinate of the point indicating the coordinate data of the approach check plane.
  • Y
    The Y coordinate of the point indicating the coordinate data of the approach check plane.
  • Z
    The Z coordinate of the point indicating the coordinate data of the approach check plane.
  • U
    The U coordinate of the point indicating the coordinate data of the approach check plane.
  • V
    The V coordinate of the point indicating the coordinate data of the approach check plane.
  • W
    The W coordinate of the point indicating the coordinate data of the approach check plane.

See Also
PlaneClr Method, PlaneDef Method

Plane Example
VB Example:

m_spel.Plane(1, -5, 5, -10, 10, -20, 20)  

C# Example:

m_spel.Plane(1, -5, 5, -10, 10, -20, 20);