Struct PathPoint
Represents a tool path point.
Inherited Members
      System.ValueType.Equals(System.Object)
    
    
      System.ValueType.GetHashCode()
    
    
      System.ValueType.ToString()
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetType()
    
  Namespace: TopSolid.Cam.NC.Kernel.Automating
Assembly: TopSolid.Cam.NC.Kernel.Automating.dll
Syntax
public struct PathPoint
  Constructors
PathPoint(Point3D, Vector3D, Double)
Initializes a new instance of the ParameterId structure.
Declaration
public PathPoint(Point3D inPoint, Vector3D inNormal, double inFeedrateFactor)
  Parameters
| Type | Name | Description | 
|---|---|---|
| Point3D | inPoint | |
| Vector3D | inNormal | |
| System.Double | inFeedrateFactor | 
Fields
Empty
Empty identifier.
Declaration
public static readonly PathPoint Empty
  Field Value
| Type | Description | 
|---|---|
| PathPoint | 
Properties
FeedrateFactor
Gets the feedrate to reach the point.
Declaration
public readonly double FeedrateFactor { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Double | 
IsEmpty
Tells whether the parameter identifier is empty.
Declaration
public readonly bool IsEmpty { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Normal
Gets the normal of this point.
Declaration
public readonly Vector3D Normal { get; }
  Property Value
| Type | Description | 
|---|---|
| Vector3D | 
Point
Gets the point.
Declaration
public readonly Point3D Point { get; }
  Property Value
| Type | Description | 
|---|---|
| Point3D |