void displayCCS(bool displayCCS)

Given parameter determines if the cartesian coordinate system will be rendered in this scene.

Source

void displayCCS(bool displayCCS) {
  if (displayCCS && !nonIdxPrimitives.contains(ccs)) {
    nonIdxPrimitives.add(ccs);
  }

  if (!displayCCS) {
    remove(ccs.id);
  }
}