Java org.apache.commons.math3.geometry.euclidean.threed Line fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.geometry.euclidean.threed Line fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.geometry.euclidean.threed Line.

The text is from its open source code.

Constructor

Line(final Vector3D p1, final Vector3D p2)
Build a line from two points.

Method

booleancontains(final Vector3D p)
Check if the instance contains a point.
doubledistance(final Vector3D p)
Compute the distance between the instance and a point.
doubledistance(final Line line)
Compute the shortest distance between the instance and another line.
doublegetAbscissa(final Vector3D point)
Get the abscissa of a point with respect to the line.
Vector3DgetDirection()
Get the normalized direction vector.
Vector3DgetOrigin()
Get the line point closest to the origin.
Vector3DpointAt(final double abscissa)
Get one point from the line.
Linerevert()
Get a line with reversed direction.
Vector3DtoSpace(final Vector point)
Vector1DtoSubSpace(final Vector point)