LastCollisionPoint
Introduction
Code Example
Circle circle;
Line line1;
Line line2;void CustomInitialize()
{
circle = ShapeManager.AddCircle();
circle.Radius = 10;
line1 = ShapeManager.AddLine();
line2 = ShapeManager.AddLine();
line2.RelativePoint2 = new Point3D(100, 100);
}Last updated
Was this helpful?