Record Class TrackBlockOutline.BezierPointSelection

java.lang.Object
java.lang.Record
com.simibubi.create.content.logistics.trains.track.TrackBlockOutline.BezierPointSelection
Enclosing class:
TrackBlockOutline

public static record TrackBlockOutline.BezierPointSelection(TrackTileEntity te, BezierTrackPointLocation loc, net.minecraft.world.phys.Vec3 vec, net.minecraft.world.phys.Vec3 angles, net.minecraft.world.phys.Vec3 direction) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    BezierPointSelection(TrackTileEntity te, BezierTrackPointLocation loc, net.minecraft.world.phys.Vec3 vec, net.minecraft.world.phys.Vec3 angles, net.minecraft.world.phys.Vec3 direction)
    Creates an instance of a BezierPointSelection record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.world.phys.Vec3
    Returns the value of the angles record component.
    net.minecraft.world.phys.Vec3
    Returns the value of the direction record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    loc()
    Returns the value of the loc record component.
    te()
    Returns the value of the te record component.
    final String
    Returns a string representation of this record class.
    net.minecraft.world.phys.Vec3
    vec()
    Returns the value of the vec record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • BezierPointSelection

      public BezierPointSelection(TrackTileEntity te, BezierTrackPointLocation loc, net.minecraft.world.phys.Vec3 vec, net.minecraft.world.phys.Vec3 angles, net.minecraft.world.phys.Vec3 direction)
      Creates an instance of a BezierPointSelection record class.
      Parameters:
      te - the value for the te record component
      loc - the value for the loc record component
      vec - the value for the vec record component
      angles - the value for the angles record component
      direction - the value for the direction record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • te

      public TrackTileEntity te()
      Returns the value of the te record component.
      Returns:
      the value of the te record component
    • loc

      Returns the value of the loc record component.
      Returns:
      the value of the loc record component
    • vec

      public net.minecraft.world.phys.Vec3 vec()
      Returns the value of the vec record component.
      Returns:
      the value of the vec record component
    • angles

      public net.minecraft.world.phys.Vec3 angles()
      Returns the value of the angles record component.
      Returns:
      the value of the angles record component
    • direction

      public net.minecraft.world.phys.Vec3 direction()
      Returns the value of the direction record component.
      Returns:
      the value of the direction record component