Record Class RawFiducial
java.lang.Object
java.lang.Record
com.titaniumtigers4829.data.fiducial.RawFiducial
public record RawFiducial(int id, double txnc, double tync, double ta, double distToCamera, double distToRobot, double ambiguity)
extends Record
Represents a Limelight Raw Fiducial result from Limelight's NetworkTables output.
-
Constructor Summary
ConstructorsConstructorDescriptionRawFiducial
(int id, double txnc, double tync, double ta, double distToCamera, double distToRobot, double ambiguity) Creates an instance of aRawFiducial
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
Returns the value of theambiguity
record component.double
Returns the value of thedistToCamera
record component.double
Returns the value of thedistToRobot
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
id()
Returns the value of theid
record component.double
ta()
Returns the value of theta
record component.final String
toString()
Returns a string representation of this record class.double
txnc()
Returns the value of thetxnc
record component.double
tync()
Returns the value of thetync
record component.
-
Constructor Details
-
RawFiducial
public RawFiducial(int id, double txnc, double tync, double ta, double distToCamera, double distToRobot, double ambiguity) Creates an instance of aRawFiducial
record class.- Parameters:
id
- the value for theid
record componenttxnc
- the value for thetxnc
record componenttync
- the value for thetync
record componentta
- the value for theta
record componentdistToCamera
- the value for thedistToCamera
record componentdistToRobot
- the value for thedistToRobot
record componentambiguity
- the value for theambiguity
record 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 with '=='. -
id
public int id()Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
txnc
public double txnc()Returns the value of thetxnc
record component.- Returns:
- the value of the
txnc
record component
-
tync
public double tync()Returns the value of thetync
record component.- Returns:
- the value of the
tync
record component
-
ta
public double ta()Returns the value of theta
record component.- Returns:
- the value of the
ta
record component
-
distToCamera
public double distToCamera()Returns the value of thedistToCamera
record component.- Returns:
- the value of the
distToCamera
record component
-
distToRobot
public double distToRobot()Returns the value of thedistToRobot
record component.- Returns:
- the value of the
distToRobot
record component
-
ambiguity
public double ambiguity()Returns the value of theambiguity
record component.- Returns:
- the value of the
ambiguity
record component
-