Returns "(meshA \ meshB) union (meshB \ meshA)", i.e. a mesh that represents all points that are either in A or B but not in both.
Signature
class Operation:
// Computes the symmetric difference between two mesh operands
fun differenceSymmetric(
meshA: MeshOperand,
meshB: MeshOperand,
) -> MeshOperand