Given zero or more step functions, modifies any output functions among them to only output a single *point* of data, at `pt` (a `Vector3`).
(pt, *step_funcs)
| 5236 | |
| 5237 | |
| 5238 | def in_point(pt, *step_funcs): |
| 5239 | """ |
| 5240 | Given zero or more step functions, modifies any output functions among them to only |
| 5241 | output a single *point* of data, at `pt` (a `Vector3`). |
| 5242 | """ |
| 5243 | v = Volume(pt) |
| 5244 | return in_volume(v, *step_funcs) |
| 5245 | |
| 5246 | |
| 5247 | def to_appended(fname, *step_funcs): |