compose static method

Projector compose(
  1. List<Projector> projectors
)

Creates a ComposedProjector that will apply the provided projectors in order.

Use when dealing with multiple coordinate transformations in succession.

Implementation

static Projector compose(List<Projector> projectors) {
  return ComposedProjector(projectors);
}