Class InnerComputationGeomFactory

    • Method Detail

      • convertToPoint

        public InnerComputationPoint3ai convertToPoint​(Point3D<?,​?> pt)
        Description copied from interface: GeomFactory3D
        Convert the given point if it is not of the right type.
        Parameters:
        pt - the point to convert.
        Returns:
        p if it is of type P, or a copy of p.
      • convertToPoint

        public InnerComputationPoint3ai convertToPoint​(Vector3D<?,​?> vector)
        Description copied from interface: GeomFactory3D
        Convert the given vector.
        Parameters:
        vector - the vector to convert.
        Returns:
        the point.
      • convertToVector

        public InnerComputationVector3ai convertToVector​(Point3D<?,​?> pt)
        Description copied from interface: GeomFactory3D
        Convert the given point.
        Parameters:
        pt - the point to convert.
        Returns:
        the vector.
      • newPoint

        public InnerComputationPoint3ai newPoint​(double x,
                                                 double y,
                                                 double z)
        Description copied from interface: GeomFactory3D
        Create a point.
        Parameters:
        x - x coordinate of the point.
        y - y coordinate of the point.
        z - z coordinate of the point.
        Returns:
        the point.
      • newPoint

        public InnerComputationPoint3ai newPoint​(int x,
                                                 int y,
                                                 int z)
        Description copied from interface: GeomFactory3D
        Create a point.
        Parameters:
        x - x coordinate of the point.
        y - y coordinate of the point.
        z - z coordinate of the point.
        Returns:
        the point.
      • newVector

        public InnerComputationVector3ai newVector​(double x,
                                                   double y,
                                                   double z)
        Description copied from interface: GeomFactory3D
        Create a vector.
        Parameters:
        x - x coordinate of the vector.
        y - y coordinate of the vector.
        z - z coordinate of the vector.
        Returns:
        the vector.
      • newVector

        public InnerComputationVector3ai newVector​(int x,
                                                   int y,
                                                   int z)
        Description copied from interface: GeomFactory3D
        Create a vector.
        Parameters:
        x - x coordinate of the vector.
        y - y coordinate of the vector.
        z - z coordinate of the vector.
        Returns:
        the vector.
      • newQuaternion

        public Quaternion newQuaternion​(Vector3D<?,​?> axis,
                                        double angle)
        Description copied from interface: GeomFactory3D
        Creates a Quaternion.
        Parameters:
        axis - the axis of the quaternion.
        angle - the angle of the quaternion.
        Returns:
        the quaternion.
      • newQuaternion

        public Quaternion newQuaternion​(double attitude,
                                        double bank,
                                        double heading)
        Description copied from interface: GeomFactory3D
        Creates a Quaternion.
        Parameters:
        attitude - the attitude of the quaternion
        bank - the bank of the quaternion
        heading - the heading of the quaternion
        Returns:
        the quaternion