Class Point3D

java.lang.Object
io.goobi.viewer.model.viewer.object.Point3D

public class Point3D extends Object

Point3D class.

Author:
Florian Alpers
  • Constructor Summary

    Constructors
    Constructor
    Description
    Point3D(double x, double y, double z)
    Constructor for Point3D.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Getter for the field x.
    double
    Getter for the field y.
    double
    Getter for the field z.
    void
    setX(double x)
    Setter for the field x.
    void
    setY(double y)
    Setter for the field y.
    void
    setZ(double z)
    Setter for the field z.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Point3D

      public Point3D(double x, double y, double z)

      Constructor for Point3D.

      Parameters:
      x - a double.
      y - a double.
      z - a double.
  • Method Details

    • getX

      public double getX()

      Getter for the field x.

      Returns:
      the x
    • setX

      public void setX(double x)

      Setter for the field x.

      Parameters:
      x - the x to set
    • getY

      public double getY()

      Getter for the field y.

      Returns:
      the y
    • setY

      public void setY(double y)

      Setter for the field y.

      Parameters:
      y - the y to set
    • getZ

      public double getZ()

      Getter for the field z.

      Returns:
      the z
    • setZ

      public void setZ(double z)

      Setter for the field z.

      Parameters:
      z - the z to set