@Deprecated public class LineObject2D extends Line2D implements Cloneable
Example :
// Create an Edge2D
LineObject2D line = new LineObject2D(new Point2D(0, 0), new Point2D(1, 2));
// Change direction of line, by changing second point :
line.setPoint2(new Point2D(4, 5));
// Change position and direction of the line, by changing first point.
// 'line' is now the edge (2,3)-(4,5)
line.setPoint1(new Point2D(2, 3));
This class is maybe slower than Edge2D or StraightLine2D, because parameters are updated each time a computation is made, causing lot of additional processing.
Constructor and Description |
---|
LineObject2D(double x1,
double y1,
double x2,
double y2)
Deprecated.
Define a new LineObject2D with two extremities.
|
LineObject2D(Point2D point1,
Point2D point2)
Deprecated.
Define a new LineObject2D with two extremities.
|
Modifier and Type | Method and Description |
---|---|
Line2D |
clone()
Deprecated.
Overrides Object declaration to ensure Curve2D implementation are
cloned as Curve2D.
|
appendPath, clip, contains, contains, create, equals, getBoundingBox, getBuffer, getCartesianEquation, getContinuousCurves, getCurvature, getDistance, getDistance, getFirstPoint, getGeneralPath, getHorizontalAngle, getIntersection, getIntersections, getLastPoint, getLength, getLength, getOrigin, getOtherPoint, getParallel, getParallel, getParametric, getPerpendicular, getPoint, getPoint1, getPoint2, getPolarCoefficients, getPosition, getPosition, getReverseCurve, getSignedDistance, getSignedDistance, getSignedPolarCoefficients, getSmoothPieces, getSubCurve, getSupportingLine, getT0, getT1, getTangent, getVector, getWindingAngle, getX1, getX2, getY1, getY2, intersects, isBounded, isClosed, isColinear, isEmpty, isInside, isParallel, project, setPoint1, setPoint2, toString, transform, transform
getLeftTangent, getRightTangent, getSingularPoints, isSingular
draw, getAsAWTShape, getAsPolyline, wrapCurve
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getAsPolyline, getLeftTangent, getRightTangent
draw, getAsAWTShape, getSingularPoints, isSingular
Copyright © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.