/* * Copyright (C) 2011-2015, Peter Abeles. All Rights Reserved. * * This file is part of Geometric Regression Library (GeoRegression). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package georegression.struct.line; import georegression.struct.point.Point2D_F64; import georegression.struct.point.Vector2D_F64; import java.io.Serializable; /** * <p> * 2D line parameterized using parametric equation:<br> * [x, y] = [x_0, y_0] + t·[slopeX, slopeY]<br> * where t specifies the location along the line, (x_0,y_0) is an arbitrary point on the line, * and (slopeX,slopeY). * </p> */ public class LineParametric2D_F64 implements Serializable { /** * A point on the line */ public Point2D_F64 p = new Point2D_F64(); /** * The line's slope */ public Vector2D_F64 slope = new Vector2D_F64(); public LineParametric2D_F64( double x_0, double y_0, double slopeX, double slopeY ) { p.set( x_0, y_0 ); slope.set( slopeX, slopeY ); } public LineParametric2D_F64( Point2D_F64 p, Vector2D_F64 slope ) { setPoint(p); setSlope(slope); } public LineParametric2D_F64() { } public void set( LineParametric2D_F64 line ) { this.p.set(line.p); this.slope.set(line.slope); } public void setPoint( Point2D_F64 pt ) { this.p.set( pt ); } public void setPoint( double x, double y ) { this.p.x = x; this.p.y = y; } public void setSlope( Vector2D_F64 slope ) { this.slope.set( slope ); } public void setSlope( double slopeX, double slopeY ) { this.slope.x = slopeX; this.slope.y = slopeY; } /** * Sets the slope to the unit vector specified by the provided angle. * * @param angle Angle of the line specified in radians. */ public void setAngle( double angle ) { slope.set( Math.cos( angle ), Math.sin( angle ) ); } public double getAngle() { return Math.atan2( slope.y, slope.x ); } /** * Returns a point along the line. See parametric equation in class description. * * @param t Location along the line. * @return Point on the line. */ public Point2D_F64 getPointOnLine( double t ) { return new Point2D_F64( slope.x * t + p.x, slope.y * t + p.y ); } public Point2D_F64 getPoint() { return p; } public final double getSlopeX() { return slope.x; } public final double getSlopeY() { return slope.y; } public final double getX() { return p.x; } public final double getY() { return p.y; } public Point2D_F64 getP() { return p; } public void setP(Point2D_F64 p) { this.p = p; } public Vector2D_F64 getSlope() { return slope; } public LineParametric2D_F64 copy() { return new LineParametric2D_F64( p, slope ); } @Override public String toString() { return getClass().getSimpleName()+" P( "+p.x+" "+p.y+" ) Slope( "+slope.x+" "+slope.y+" )"; } }