Interface MultiShape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>,​B extends RectangularPrism3afp<?,​?,​IE,​P,​V,​B>>

  • Type Parameters:
    ST - is the type of the general implementation.
    IT - is the type of the implementation of this multishape.
    CT - is the type of the shapes that are inside this multishape.
    IE - is the type of the path elements.
    P - is the type of the points.
    V - is the type of the vectors.
    B - is the type of the bounding boxes.
    All Superinterfaces:
    Cloneable, Collection<CT>, Iterable<CT>, JsonableObject, List<CT>, MultiShape3D<ST,​IT,​CT,​PathIterator3afp<IE>,​P,​V,​B>, Serializable, Shape3afp<ST,​IT,​IE,​P,​V,​B>, Shape3D<ST,​IT,​PathIterator3afp<IE>,​P,​V,​B>
    All Known Implementing Classes:
    MultiShape3d, MultiShape3dfx

    public interface MultiShape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>,​B extends RectangularPrism3afp<?,​?,​IE,​P,​V,​B>>
    extends Shape3afp<ST,​IT,​IE,​P,​V,​B>, MultiShape3D<ST,​IT,​CT,​PathIterator3afp<IE>,​P,​V,​B>
    Container for grouping of shapes.

    The coordinates of the shapes inside the multishape are global. They are not relative to the multishape.

    Since:
    13.0
    Version:
    17.0 2020-01-04 14:41:43
    Author:
    Thomas PIOTROWSKI, Stéphane GALLAND
    Maven Group Id:
    org.arakhne.afc.core
    Maven Artifact Id:
    mathgeom
    • Method Detail

      • intersects

        @Pure
        default boolean intersects​(Sphere3afp<?,​?,​?,​?,​?,​?> sphere)
        Description copied from interface: Shape3afp
        Replies if this shape is intersecting the given circle.
        Specified by:
        intersects in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        sphere - the sphere
        Returns:
        true if this shape is intersecting the given shape; false if there is no intersection.
      • intersects

        @Pure
        default boolean intersects​(Segment3afp<?,​?,​?,​?,​?,​?> segment)
        Description copied from interface: Shape3afp
        Replies if this shape is intersecting the given line.
        Specified by:
        intersects in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        segment - the segment
        Returns:
        true if this shape is intersecting the given shape; false if there is no intersection.
      • intersects

        @Pure
        default boolean intersects​(MultiShape3afp<?,​?,​?,​?,​?,​?,​?> multishape)
        Description copied from interface: Shape3afp
        Replies if this shape is intersecting the given multishape.
        Specified by:
        intersects in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        multishape - the multishape
        Returns:
        true if this shape is intersecting the given shape; false if there is no intersection.
      • contains

        @Pure
        default boolean contains​(double x,
                                 double y,
                                 double z)
        Description copied from interface: Shape3afp
        Replies if the given point is inside this shape.
        Specified by:
        contains in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        x - x coordinate of the point to test.
        y - y coordinate of the point to test.
        z - z coordinate of the point to test.
        Returns:
        true if the given point is inside this shape, otherwise false.
      • getClosestPointTo

        default P getClosestPointTo​(Sphere3afp<?,​?,​?,​?,​?,​?> circle)
        Description copied from interface: Shape3afp
        Replies the closest point on this shape to the given sphere.

        If the two shapes are intersecting, the replied point is always at the intersection of the two shapes. This function does not enforce the meaning of the replied point in the case of shape intersection. In other words, this function is warranting that the reply point is the either the penetration point, nor a perimeter point, nor any point with a specific meaning.

        Specified by:
        getClosestPointTo in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        circle - the sphere.
        Returns:
        the closest point on the shape; or the point itself if it is inside the shape.
      • getClosestPointTo

        default P getClosestPointTo​(Segment3afp<?,​?,​?,​?,​?,​?> segment)
        Description copied from interface: Shape3afp
        Replies the closest point on this shape to the given segment.

        If the two shapes are intersecting, the replied point is always at the intersection of the two shapes. This function does not enforce the meaning of the replied point in the case of shape intersection. In other words, this function is warranting that the reply point is the either the penetration point, nor a perimeter point, nor any point with a specific meaning.

        Specified by:
        getClosestPointTo in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        segment - the segment.
        Returns:
        the closest point on the shape; or the point itself if it is inside the shape.
      • getClosestPointTo

        default P getClosestPointTo​(RectangularPrism3afp<?,​?,​?,​?,​?,​?> rectangle)
        Description copied from interface: Shape3afp
        Replies the closest point on this shape to the given rectangular prism.

        If the two shapes are intersecting, the replied point is always at the intersection of the two shapes. This function does not enforce the meaning of the replied point in the case of shape intersection. In other words, this function is warranting that the reply point is the either the penetration point, nor a perimeter point, nor any point with a specific meaning.

        Specified by:
        getClosestPointTo in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        rectangle - the rectangular prism.
        Returns:
        the closest point on the shape; or the point itself if it is inside the shape.
      • getClosestPointTo

        default P getClosestPointTo​(Path3afp<?,​?,​?,​?,​?,​?> path)
        Description copied from interface: Shape3afp
        Replies the closest point on this shape to the given path.

        If the two shapes are intersecting, the replied point is always at the intersection of the two shapes. This function does not enforce the meaning of the replied point in the case of shape intersection. In other words, this function is warranting that the reply point is the either the penetration point, nor a perimeter point, nor any point with a specific meaning.

        Specified by:
        getClosestPointTo in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        path - the path.
        Returns:
        the closest point on the shape; or the point itself if it is inside the shape.
      • getClosestPointTo

        default P getClosestPointTo​(MultiShape3afp<?,​?,​?,​?,​?,​?,​?> multishape)
        Description copied from interface: Shape3afp
        Replies the closest point on this shape to the given multishape.

        If the two shapes are intersecting, the replied point is always at the intersection of the two shapes. This function does not enforce the meaning of the replied point in the case of shape intersection. In other words, this function is warranting that the reply point is the either the penetration point, nor a perimeter point, nor any point with a specific meaning.

        Specified by:
        getClosestPointTo in interface Shape3afp<ST extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IT extends MultiShape3afp<?,​?,​CT,​IE,​P,​V,​B>,​CT extends Shape3afp<?,​?,​IE,​P,​V,​B>,​IE extends PathElement3afp,​P extends Point3D<? super P,​? super V>,​V extends Vector3D<? super V,​? super P>>
        Parameters:
        multishape - the multishape.
        Returns:
        the closest point on the shape; or the point itself if it is inside the shape.