Packages

object BufferParameters

A value class containing the parameters which specify how a buffer should be constructed.

The parameters allow control over:

  • Quadrant segments (accuracy of approximation for circular arcs)
  • End Cap style
  • Join style
  • Mitre limit
  • whether the buffer is single-sided
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BufferParameters
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. val CAP_FLAT: Int

    Specifies a flat line buffer end cap style.

  5. val CAP_ROUND: Int

    Specifies a round line buffer end cap style.

  6. val CAP_SQUARE: Int

    Specifies a square line buffer end cap style.

  7. val DEFAULT_MITRE_LIMIT: Double

    The default mitre limit Allows fairly pointy mitres.

  8. val DEFAULT_QUADRANT_SEGMENTS: Int

    The default number of facets into which to divide a fillet of 90 degrees.

    The default number of facets into which to divide a fillet of 90 degrees. A value of 8 gives less than 2% max error in the buffer distance. For a max error of < 1%, use QS = 12. For a max error of < 0.1%, use QS = 18.

  9. val DEFAULT_SIMPLIFY_FACTOR: Double

    The default simplify factor Provides an accuracy of about 1%, which matches the accuracy of the default Quadrant Segments parameter.

  10. val JOIN_BEVEL: Int

    Specifies a bevel join style.

  11. val JOIN_MITRE: Int

    Specifies a mitre join style.

  12. val JOIN_ROUND: Int

    Specifies a round join style.

  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def bufferDistanceError(quadSegs: Int): Double

    Computes the maximum distance error due to a given level of approximation to a true arc.

    Computes the maximum distance error due to a given level of approximation to a true arc.

    quadSegs

    the number of segments used to approximate a quarter-circle return the error of approximation

  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped