object TwoComplex

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TwoComplex
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Concrete(vertices: Set[Vertex], edges: Set[Edge], faces: Set[Polygon]) extends TwoComplex with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def allCollapsed(complex: TwoComplex): (TwoComplex, ((EdgePath) => EdgePath, (EdgePath) => EdgePath))
  5. def allCollapsed1(complex: TwoComplex): TwoComplex
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def halfEdges(edges: List[Edge], accum: Set[Edge]): Set[Edge]
    Annotations
    @tailrec()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mergeFaces(e: Edge, first: Polygon, second: Polygon): Polygon
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def nonLoop(complex: TwoComplex): Option[Edge]
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def pure(fs: Polygon*): TwoComplex
  20. def symbolic(vertexNames: String*)(edgeMap: (String, (String, String))*)(faceMap: (String, Seq[(String, Boolean)])*): TwoComplex

    Symbolic two-complexes, i.e.

    Symbolic two-complexes, i.e. two-complexes with vertices, edges and faces determined by their names.

    For example, here is how a torus is constructed.

    TwoComplex.symbolic(
        "x")(
        "a" -> ("x", "x"), "b" -> ("x", "x"))(
        "face" -> Seq("a" -> true, "b" -> true, "a" -> false, "b" -> false)
        )
    vertexNames

    names of vertices separated by commas,

    edgeMap

    edgepair names mapped to initial and terminal vertices

    faceMap

    face-names mapped to pairs (edge-name, isPositivelyOriented)

    returns

    two-complex determined by the data

  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. 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

Inherited from AnyRef

Inherited from Any

Ungrouped