Operation::Create

Creates a new operation with a chosen arithmetic context

Creates a new, empty operation. After adding all desired sub-operations, queries, and commands, call Context::Execute.

The arithmetic describes the underlying math that guarantees exact results.

IMPORTANT: only meshes with the same arithmetic can be used together.

Signature

class Context:
    // Creates a new operation with a chosen arithmetic context
    fun createOperation(
        arithmetic: ExactArithmetic,
    ) -> Operation