All Downloads are FREE. Search and download functionalities are using the official Maven repository.

georegression.struct.line.LineSegment2D_I32 Maven / Gradle / Ivy

Go to download

GeoRegression is a free Java based geometry library for scientific computing in fields such as robotics and computer vision with a focus on 2D/3D space.

There is a newer version: 0.27.1
Show newest version
/*
 * Copyright (C) 2020, 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_I32;

import java.io.Serializable;


/**
 * Defines a line segment by its two end points.
 *
 * @see georegression.geometry.UtilLine2D_I32
 *
 * @author Peter Abeles
 */
public class LineSegment2D_I32 implements Serializable {
	public Point2D_I32 a = new Point2D_I32();
	public Point2D_I32 b = new Point2D_I32();

	public LineSegment2D_I32() {
	}

	public LineSegment2D_I32(Point2D_I32 a, Point2D_I32 b) {
		setTo( a, b );
	}

	public LineSegment2D_I32(int x0, int y0, int x1, int y1) {
		setTo( x0, y0, x1, y1 );
	}
	
	public static LineSegment2D_I32 wrap( Point2D_I32 a , Point2D_I32 b ) {
		LineSegment2D_I32 ret = new LineSegment2D_I32();
		ret.a = a;
		ret.b = b;
		return ret;
	}

	public void setTo(LineSegment2D_I32 l ) {
		this.a.setTo( l.a );
		this.b.setTo( l.b );
	}

	public void setTo(Point2D_I32 a, Point2D_I32 b ) {
		this.a.setTo( a );
		this.b.setTo( b );
	}

	public void setTo(int x0, int y0, int x1, int y1 ) {
		a.setTo( x0, y0 );
		b.setTo( x1, y1 );
	}

	public Point2D_I32 getA() {
		return a;
	}

	public void setA( Point2D_I32 a ) {
		this.a = a;
	}

	public Point2D_I32 getB() {
		return b;
	}

	public void setB( Point2D_I32 b ) {
		this.b = b;
	}

	public int slopeX() {
		return b.x-a.x;
	}

	public int slopeY() {
		return b.y-a.y;
	}

	public double getLength() {
		return a.distance(b);
	}

	public int getLength2() {
		return a.distance2(b);
	}

	public LineSegment2D_I32 copy() {
		return new LineSegment2D_I32( a, b );
	}

	@Override
	public String toString() {
		return "LineSegment2D_I32{" +
				"a=" + a +
				", b=" + b +
				'}';
	}

	@Override
	public boolean equals(Object obj) {
		if(this == obj)
			return true;

		if(!(obj instanceof LineSegment2D_I32))
			return false;

		LineSegment2D_I32 o = (LineSegment2D_I32) obj;
		return a.equals(o.a) && b.equals(o.b);
	}

	@Override
	public int hashCode() {
		return a.hashCode() + b.hashCode();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy