java.lang.Object
java.lang.Record
simpa.core.api.TangentVector3D
public record TangentVector3D(org.apache.commons.math3.geometry.euclidean.threed.Vector3D location, org.apache.commons.math3.geometry.euclidean.threed.Vector3D direction)
extends Record
Object representing vector that is tangent to a curve or surface at a given
point.
-
Constructor Summary
ConstructorsConstructorDescriptionTangentVector3D(org.apache.commons.math3.geometry.euclidean.threed.Vector3D location, org.apache.commons.math3.geometry.euclidean.threed.Vector3D direction) Creates an instance of aTangentVector3Drecord class. -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.commons.math3.geometry.euclidean.threed.Vector3DReturns the value of thedirectionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.org.apache.commons.math3.geometry.euclidean.threed.Vector3Dlocation()Returns the value of thelocationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TangentVector3D
public TangentVector3D(org.apache.commons.math3.geometry.euclidean.threed.Vector3D location, org.apache.commons.math3.geometry.euclidean.threed.Vector3D direction) Creates an instance of aTangentVector3Drecord class.- Parameters:
location- the value for thelocationrecord componentdirection- the value for thedirectionrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
location
public org.apache.commons.math3.geometry.euclidean.threed.Vector3D location()Returns the value of thelocationrecord component.- Returns:
- the value of the
locationrecord component
-
direction
public org.apache.commons.math3.geometry.euclidean.threed.Vector3D direction()Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-