AutoCAD.Arc

Inherits from AutoCAD.Entity

Description

A class that encapsulates an arc in a DWG file.

This class is a FlexScript wrapper for the AcDbArc class.

Properties

center Gets/sets the location of the center of the arc.
endAngle Gets/sets the end angle of the arc.
radius Gets/sets the radius of the circle associated with the arc.
startAngle Gets/sets the start angle of the arc.
totalAngle Gets the total angle of the arc.

Methods

create Creates a new AutoCAD.Arc object.

Details

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.Arc.center

Vec3 center

Description

Gets/sets the location of the center of the arc.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.Arc.endAngle

double endAngle

Description

Gets/sets the end angle of the arc.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.Arc.radius

double radius

Description

Gets/sets the radius of the circle associated with the arc.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.Arc.startAngle

double startAngle

Description

Gets/sets the start angle of the arc.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.Arc.totalAngle

readonly double totalAngle

Description

Gets the total angle of the arc.

Do no remove, this fixes the anchor on doc.flexsim.com

AutoCAD.Arc.create()

AutoCAD.Arc create( )

Returns

AutoCAD.Arc A new AutoCAD.Arc object.

Description

Creates a new AutoCAD.Arc object.


				var arc = AutoCAD.Arc.create();