Record Class BrushItem.DustParticlesDelta
java.lang.Object
java.lang.Record
net.minecraft.world.item.BrushItem.DustParticlesDelta
- Enclosing class:
BrushItem
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final doubleprivate static final doubleprivate final doubleThe field for thexdrecord component.private final doubleThe field for theydrecord component.private final doubleThe field for thezdrecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateDustParticlesDelta(double xd, double yd, double zd) Creates an instance of aDustParticlesDeltarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static BrushItem.DustParticlesDeltafromDirection(Vec3 viewVector, Direction hitDirection) final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.doublexd()Returns the value of thexdrecord component.doubleyd()Returns the value of theydrecord component.doublezd()Returns the value of thezdrecord component.
-
Field Details
-
xd
private final double xdThe field for thexdrecord component. -
yd
private final double ydThe field for theydrecord component. -
zd
private final double zdThe field for thezdrecord component. -
ALONG_SIDE_DELTA
private static final double ALONG_SIDE_DELTA- See Also:
-
OUT_FROM_SIDE_DELTA
private static final double OUT_FROM_SIDE_DELTA- See Also:
-
-
Constructor Details
-
DustParticlesDelta
private DustParticlesDelta(double xd, double yd, double zd) Creates an instance of aDustParticlesDeltarecord class.- Parameters:
xd- the value for thexdrecord componentyd- the value for theydrecord componentzd- the value for thezdrecord component
-
-
Method Details
-
fromDirection
-
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 with thecomparemethod from their corresponding wrapper classes. -
xd
public double xd()Returns the value of thexdrecord component.- Returns:
- the value of the
xdrecord component
-
yd
public double yd()Returns the value of theydrecord component.- Returns:
- the value of the
ydrecord component
-
zd
public double zd()Returns the value of thezdrecord component.- Returns:
- the value of the
zdrecord component
-