Class Span

java.lang.Object
org.recast4j.recast.Span

public class Span
extends java.lang.Object
Represents a span in a heightfield.
  • Field Summary

    Fields
    Modifier and Type Field Description
    int area
    The area id assigned to the span.
    Span next
    The next span higher up in column.
    int smax
    The upper limit of the span.
    int smin
    The lower limit of the span.
  • Constructor Summary

    Constructors
    Constructor Description
    Span()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • smin

      public int smin
      The lower limit of the span. [Limit: < smax]
    • smax

      public int smax
      The upper limit of the span. [Limit: <= SPAN_MAX_HEIGHT]
    • area

      public int area
      The area id assigned to the span.
    • next

      public Span next
      The next span higher up in column.
  • Constructor Details

    • Span

      public Span()