| 33 | |
| 34 | struct CalVector4 : CalBase4 { |
| 35 | CalVector4() { |
| 36 | x = 0.0f; |
| 37 | y = 0.0f; |
| 38 | z = 0.0f; |
| 39 | w = 0.0f; |
| 40 | } |
| 41 | |
| 42 | CalVector4(float x, float y, float z, float w = 0.0f) { |
| 43 | this->x = x; |
nothing calls this directly
no outgoing calls
no test coverage detected