Packages

c

continuum

LesserRay

case class LesserRay[T](bound: Bound[T])(implicit conv: (T) => Ordered[T]) extends Ray[T] with Ordered[LesserRay[T]] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Ordered[LesserRay[T]], Comparable[LesserRay[T]], Ray[T], (T) => Boolean, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LesserRay
  2. Serializable
  3. Product
  4. Equals
  5. Ordered
  6. Comparable
  7. Ray
  8. Function1
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LesserRay(bound: Bound[T])(implicit conv: (T) => Ordered[T])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def <(that: LesserRay[T]): Boolean
    Definition Classes
    Ordered
  4. def <=(that: LesserRay[T]): Boolean
    Definition Classes
    Ordered
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def >(that: LesserRay[T]): Boolean
    Definition Classes
    Ordered
  7. def >=(that: LesserRay[T]): Boolean
    Definition Classes
    Ordered
  8. def andThen[A](g: (Boolean) => A): (T) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  9. def apply(point: T): Boolean

    Tests if this ray contains the specified point.

    Tests if this ray contains the specified point.

    Definition Classes
    LesserRayRay → Function1
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. val bound: Bound[T]
    Definition Classes
    LesserRayRay
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  13. def compare(other: LesserRay[T]): Int
    Definition Classes
    LesserRay → Ordered
  14. def compareTo(that: LesserRay[T]): Int
    Definition Classes
    Ordered → Comparable
  15. def compose[A](g: (A) => T): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  16. def connects(other: Ray[T]): Boolean

    Tests if this ray is connected to the other.

    Tests if this ray is connected to the other. Rays are connected if they intersect, or are tangent.

    Definition Classes
    Ray
  17. def encloses(other: Ray[T]): Boolean

    Tests if this ray encloses the other.

    Tests if this ray encloses the other. A ray encloses another if it contains all points contained by the other.

    Definition Classes
    LesserRayRay
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def intersects(other: Ray[T]): Boolean

    Tests if this ray intersects the other.

    Tests if this ray intersects the other. Rays intersect if they share any points in common. Said another way, rays intersect if they overlap.

    Definition Classes
    LesserRayRay
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def isSameDirection(other: Ray[T]): Boolean
    Definition Classes
    LesserRayRay
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def tangent: Option[GreaterRay[T]]

    Returns the ray tangent to this one, if such a ray exists.

    Returns the ray tangent to this one, if such a ray exists.

    Definition Classes
    LesserRayRay
  29. def tangents(other: Ray[T]): Boolean

    Tests if this ray is tangent to the other.

    Tests if this ray is tangent to the other. Rays are tangent if they do not contain any points in common, but all points are contained by one of the rays.

    Definition Classes
    LesserRayRay
  30. def toString(): String
    Definition Classes
    LesserRay → Function1 → AnyRef → Any
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Ordered[LesserRay[T]]

Inherited from Comparable[LesserRay[T]]

Inherited from Ray[T]

Inherited from (T) => Boolean

Inherited from AnyRef

Inherited from Any

Ungrouped