MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / Vector3d

Class Vector3d

src/main/java/net/minecraft/util/Vector3d.java:3–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package net.minecraft.util;
2
3public class Vector3d
4{
5 public double field_181059_a;
6 public double field_181060_b;
7 public double field_181061_c;
8
9 public Vector3d()
10 {
11 this.field_181059_a = this.field_181060_b = this.field_181061_c = 0.0D;
12 }
13
14 public Vector3d(double x, double y, double z) {
15 this.field_181059_a = x;
16 this.field_181060_b = y;
17 this.field_181061_c = z;
18 }
19
20 public double getX() {
21 return field_181059_a;
22 }
23
24 public double getY() {
25 return field_181060_b;
26 }
27
28 public double getZ() {
29 return field_181061_c;
30 }
31}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected