(&self, t: f32, life: f32, params: &[f32], stack: &mut Vec<f32>)
| 81 | pub fn ops(&self) -> &[Op] { |
| 82 | &self.ops |
| 83 | } |
| 84 | |
| 85 | pub fn eval(&self, t: f32, life: f32, params: &[f32], stack: &mut Vec<f32>) -> Option<f32> { |
| 86 | eval_ops(&self.ops, t, life, params, stack) |
| 87 | } |
| 88 |