A tool for evaluating multiple NURBS curve/surface points using the GPU.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
354 B

//
// 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