// // Created by 14727 on 2022/12/11. // #ifndef NURBSEVALUATOR_VEC_CUH #define NURBSEVALUATOR_VEC_CUH #include "cuda_runtime.h" class FVec3 { public: float x, y, z; __device__ __host__ FVec3(float x_, float y_, float z_); __device__ __host__ FVec3(FVec3 const &fVec3); __device__ __host__ FVec3(); }; #endif //NURBSEVALUATOR_VEC_CUH