pushPhysicalShape method

void pushPhysicalShape ({Path path, double elevation, Color color })

Pushes a physical layer operation for an arbitrary shape onto the operation stack.

Rasterization will be clipped to the given shape.

See pop for details about the operation stack.

Implementation

void pushPhysicalShape({ Path path, double elevation, Color color }) {
  _pushPhysicalShape(path, elevation, color.value);
}