private void makeRadialWallOutlineIndices(
      int pillars, int stacks, int orientation, Geometry dest) {
    GeometryBuilder gb = this.getGeometryBuilder();
    gb.setOrientation(orientation);

    int mode = gb.getRadialWallOutlineDrawMode();
    int count = gb.getRadialWallOutlineIndexCount(pillars, stacks);
    int[] indices = new int[count];
    gb.makeRadialWallOutlineIndices(pillars, stacks, indices);

    dest.setElementData(mode, count, indices);
  }