Copyright © 2021 by K4.org
  (v.0.48.124)

Circular Arc in XY plane of local Frame. Angles are measured from the +X axis counter-clockwise about the +Z axis (Right-hand Rule).

Arc

Index

Rules

endAngle

endAngle: Number

Ending angle in degrees from +X axis

Flags : Cached, Parameter (Note this is uncached)

Expression : 360.0

getPoint

getPoint: Point

Returns the point on the arc at the given angle in degrees.

Flags : Cached, Method (Note this is uncached)

Expression : return function(ang) { const rad = ang*Math.PI/180; const r = this.radius; return v(r*Math.cos(rad), r*Math.sin(rad), 0).addp(this.origin);}

radius

radius: Number

Radius of the arc

Flags : Cached, Parameter (Note this is uncached)

Expression : 1.0

startAngle

startAngle: Number

Starting angle in degrees from +X axis

Flags : Cached, Parameter (Note this is uncached)

Expression : 0.0