Class RecastBuilderConfig

java.lang.Object
org.recast4j.recast.RecastBuilderConfig

public class RecastBuilderConfig
extends java.lang.Object
  • Field Summary

    Fields
    Modifier and Type Field Description
    float[] bmax
    The maximum bounds of the field's AABB.
    float[] bmin
    The minimum bounds of the field's AABB.
    RecastConfig cfg  
    int height
    The height of the field along the z-axis.
    int tileX  
    int tileZ  
    int width
    The width of the field along the x-axis.
  • Constructor Summary

    Constructors
    Constructor Description
    RecastBuilderConfig​(RecastConfig cfg, float[] bmin, float[] bmax)  
    RecastBuilderConfig​(RecastConfig cfg, float[] bmin, float[] bmax, int tileX, int tileZ)  
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • cfg

      public final RecastConfig cfg
    • tileX

      public final int tileX
    • tileZ

      public final int tileZ
    • width

      public final int width
      The width of the field along the x-axis. [Limit: >= 0] [Units: vx]
    • height

      public final int height
      The height of the field along the z-axis. [Limit: >= 0] [Units: vx]
    • bmin

      public final float[] bmin
      The minimum bounds of the field's AABB. [(x, y, z)] [Units: wu]
    • bmax

      public final float[] bmax
      The maximum bounds of the field's AABB. [(x, y, z)] [Units: wu]
  • Constructor Details

    • RecastBuilderConfig

      public RecastBuilderConfig​(RecastConfig cfg, float[] bmin, float[] bmax)
    • RecastBuilderConfig

      public RecastBuilderConfig​(RecastConfig cfg, float[] bmin, float[] bmax, int tileX, int tileZ)