heightfieldCylinder method

bool heightfieldCylinder(
  1. Heightfield sj,
  2. Cylinder si,
  3. Vec3 xj,
  4. Vec3 xi,
  5. Quaternion qj,
  6. Quaternion qi,
  7. Body bj,
  8. Body bi, [
  9. Shape? rsi,
  10. Shape? rsj,
  11. bool justTest = false,
])

Implementation

bool heightfieldCylinder(
  Heightfield sj,
  Cylinder si,
  Vec3 xj,
  Vec3 xi,
  Quaternion qj,
  Quaternion qi,
  Body bj,
  Body bi,
  [
    Shape? rsi,
    Shape? rsj,
    bool justTest = false
]){
  return convexHeightfield(
    si,
    sj,
    xi,
    xj,
    qi,
    qj,
    bi,
    bj,
    rsi,
    rsj,
    justTest
  );
}