Record Class Line
java.lang.Object
java.lang.Record
dev.latvian.mods.klib.math.Line
public record Line(net.minecraft.world.phys.Vec3 start, net.minecraft.world.phys.Vec3 end)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLine(net.minecraft.world.phys.Vec3 start, net.minecraft.world.phys.Vec3 end) Creates an instance of aLinerecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubledx()doubledy()doubledz()net.minecraft.world.phys.Vec3end()Returns the value of theendrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@Nullable net.minecraft.world.phys.BlockHitResulthitBlock(net.minecraft.world.entity.player.Player player, net.minecraft.world.level.ClipContext.Fluid fluids) net.minecraft.world.phys.Vec3start()Returns the value of thestartrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
CODEC
-
STREAM_CODEC
public static final net.minecraft.network.codec.StreamCodec<io.netty.buffer.ByteBuf, Line> STREAM_CODEC -
DATA_TYPE
-
-
Constructor Details
-
Line
public Line(net.minecraft.world.phys.Vec3 start, net.minecraft.world.phys.Vec3 end) Creates an instance of aLinerecord class.- Parameters:
start- the value for thestartrecord componentend- the value for theendrecord component
-
-
Method Details
-
dx
public double dx() -
dy
public double dy() -
dz
public double dz() -
hitBlock
@Nullable public @Nullable net.minecraft.world.phys.BlockHitResult hitBlock(net.minecraft.world.entity.player.Player player, net.minecraft.world.level.ClipContext.Fluid fluids) -
toString
-
hashCode
-
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). -
start
public net.minecraft.world.phys.Vec3 start()Returns the value of thestartrecord component.- Returns:
- the value of the
startrecord component
-
end
public net.minecraft.world.phys.Vec3 end()Returns the value of theendrecord component.- Returns:
- the value of the
endrecord component
-