Package | com.boostworthy.geom |
Interface | public interface IPathSegment extends IDisposable |
Implementors | Curve |
Property | Defined by | ||
---|---|---|---|
control : Point [read-only]
Gets the control point of the path segment.
| IPathSegment | ||
end : Point [read-only]
Gets the end point of the path segment.
| IPathSegment | ||
start : Point [read-only]
Gets the starting point of the path segment.
| IPathSegment |
Method | Defined by | ||
---|---|---|---|
Clones this object.
| IPathSegment | ||
![]() |
dispose():void
Performs any appropriate clean-up tasks for garbage collection such as
removing event listeners, setting object references to 'null', etc.
| IDisposable | |
draw(objGraphics:Graphics):void
Uses the data stored by this object to draw it into the specified graphics object.
| IPathSegment |
control | property |
control:Point
[read-only]Gets the control point of the path segment.
Implementation public function get control():Point
end | property |
end:Point
[read-only]Gets the end point of the path segment.
Implementation public function get end():Point
start | property |
start:Point
[read-only]Gets the starting point of the path segment.
Implementation public function get start():Point
clone | () | method |
public function clone():IPathSegment
Clones this object.
ReturnsIPathSegment —
A new path segment that is a clone of this object.
|
draw | () | method |
public function draw(objGraphics:Graphics):void
Uses the data stored by this object to draw it into the specified graphics object.
ParametersobjGraphics:Graphics — The graphics object to draw the path segment into.
|