Trait

com.spark3d.geometryObjects.Shape3D

Shape3D

Related Doc: package Shape3D

Permalink

trait Shape3D extends AnyRef

Generic methods for 3D shapes

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Shape3D
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val center: Point3D

    Permalink

    The center

  2. abstract def getEnvelope: BoxEnvelope

    Permalink

    Get the bounding box of the Shape3D

    Get the bounding box of the Shape3D

    returns

    bounding box (Cuboid) of the Shape3D

  3. abstract def intersects(otherShape: Shape3D): Boolean

    Permalink

    Methods to determine whether the Shape3D is contained in another Shape3D.

    Methods to determine whether the Shape3D is contained in another Shape3D. Implement different ways for different shapes (Point, Shell, Box available).

    otherShape

    : (Shape3D) An instance of Shape3D (or extension)

    returns

    (Boolean) true if the two objects intersect.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hasCenterCloseTo(p: Point3D, epsilon: Double): Boolean

    Permalink

    Return if the input Point3D is equal this Point3D

    Return if the input Point3D is equal this Point3D

    p

    Point3D for which the comparison has to be done

    returns

    true if the two Point3D centers are within epsilon

  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toHealpix(nside: Int, thetaphi: Boolean = false): Long

    Permalink

    Compute the healpix index of the geometry center.

    Compute the healpix index of the geometry center. By default, the method considers that this.y = ra, this.z = dec. You can also bypass that, and force this.y = theta, this.z = phi by setting thetaphi = true. We only consider the RING scheme for the moment.

    nside

    : (Int) Resolution of the healpix map.

    thetaphi

    : (Boolean) Convention for your data: this.y = ra, this.z = dec if false, this.y = theta, this.z = phi otherwise. Default is false.

    returns

    (Long) Healpix index of the point for the resolution chosen.

  18. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped