| 52 | fl::TimeWarp time_warp; |
| 53 | |
| 54 | fl::XYPathPtr getShape(int which) { |
| 55 | int len = shapes.size(); |
| 56 | which = which % len; |
| 57 | if (which < 0) { |
| 58 | which += len; |
| 59 | } |
| 60 | return shapes[which]; |
| 61 | } |
| 62 | |
| 63 | //////////////////// UI Section ///////////////////////////// |
| 64 | fl::UITitle title("XYPath Demo"); |