| 97 | } |
| 98 | |
| 99 | Value PushTransform(VM &vm, const float4x4 &forward, const float4x4 &backward, const Value &body) { |
| 100 | if (body.True()) vm.PushAnyAsString(otransforms); |
| 101 | AppendTransform(forward, backward); |
| 102 | return body; |
| 103 | } |
| 104 | |
| 105 | void PopTransform(VM &vm) { |
| 106 | vm.PopAnyFromString(otransforms); |
no test coverage detected