| 43 | } |
| 44 | |
| 45 | void Point::Initialize_Handles() { |
| 46 | // initialize left and right handles (in percentages from 0 to 1) |
| 47 | // default to a smooth curve |
| 48 | Initialize_LeftHandle(0.5, 1.0); |
| 49 | Initialize_RightHandle(0.5, 0.0); |
| 50 | } |
| 51 | |
| 52 | void Point::Initialize_LeftHandle(float x, float y) { |
| 53 | // initialize left handle (in percentages from 0 to 1) |
nothing calls this directly
no outgoing calls
no test coverage detected