| 56 | |
| 57 | struct CalPoint4 : CalBase4 { |
| 58 | CalPoint4() { |
| 59 | x = 0.0f; |
| 60 | y = 0.0f; |
| 61 | z = 0.0f; |
| 62 | w = 1.0f; |
| 63 | } |
| 64 | |
| 65 | CalPoint4(float x, float y, float z, float w = 1.0f) { |
| 66 | this->x = x; |
nothing calls this directly
no outgoing calls
no test coverage detected