RenderingLibrary.Math.Geometry.LinePrimitive.RemoveAt C# (CSharp) Method

RemoveAt() public method

Removes a vector from the primitive line object.
public RemoveAt ( int index ) : void
index int The index of the vector to remove.
return void
        public void RemoveAt(int index)
        {
            mVectors.RemoveAt(index);
        }

Usage Example

示例#1
0
 public void RemovePointAtIndex(int index)
 {
     mLinePrimitive.RemoveAt(index);
 }