IMotionPath

IMotionPath interface

Represent motion path.

public interface IMotionPath : IEnumerable<IMotionCmdPath>

Properties

NameDescription
AsIEnumerable { get; }Allows to get base IBehavior interface. Read-only IEnumerable.
Count { get; }Returns the number of paths in the collection. Read-only Int32.
Item { get; }Returns a command at the specified index.

Methods

NameDescription
Add(MotionCommandPathType, PointF[], MotionPathPointsType, bool)Add new command to path
Clear()Removes all commands from the collection.
Insert(int, MotionCommandPathType, PointF[], MotionPathPointsType, bool)Insert new command to path
Remove(IMotionCmdPath)Removes specified commans from the collection.
RemoveAt(int)Removes a command at the specified index.

See Also