| 237 | } |
| 238 | |
| 239 | inline void Velvety__Constructor(Velvety* This, const Vec3fa& R, const float f) |
| 240 | { |
| 241 | This->R = R; |
| 242 | This->f = f; |
| 243 | } |
| 244 | |
| 245 | inline Velvety make_Velvety(const Vec3fa& R, const float f) { |
| 246 | Velvety m; Velvety__Constructor(&m,R,f); return m; |
no outgoing calls
no test coverage detected