You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Matt Juntunen (Jira)" <ji...@apache.org> on 2019/12/03 17:20:00 UTC

[jira] [Created] (GEOMETRY-77) BoundsXD

Matt Juntunen created GEOMETRY-77:
-------------------------------------

             Summary: BoundsXD
                 Key: GEOMETRY-77
                 URL: https://issues.apache.org/jira/browse/GEOMETRY-77
             Project: Apache Commons Geometry
          Issue Type: New Feature
          Components: Euclidean 2D, Euclidean 3D
            Reporter: Matt Juntunen


Add classes containing min and max vectors defining axis-aligned bounding boxes for Euclidean 2D and 3D space.

Ex:

{code:java}
public final class Bounds3D {
    private final Vector3D min;
    private final Vector3D max;

    public Vector3D getMin(){ ... }
    public Vector3D getMax(){ ... }

    public double getMinX(){ ... }    
    public double getMaxX(){ ... }
    // ...

    public boolean contains(Vector3D pt) { ... }
    public boolean intersects(Bounds3D other) { ... }

   public static Bounds3D from(final Vector3D... pts) {
        // compute the min and max coordinate values from the input
   }    
}
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)