上等兵
UID9052024
U币1
G币162
技术0
主题5
精华0
阅读权限20
注册时间2018-8-7
最后登录2018-9-27
在线时间13 小时
上等兵
|
以下是小弟的投影代码,生成没有错误,但是图形上没有出结果,
望各位大神看一下哪里有问题。
//投影
tag_t object=plan1 ;
double matrix[16];
int status;
uf5946(&object ,matrix, &status);//获得投影的矩阵
const tag_t objects[1] = { edge08TAG};
const int n_objects = 1;//数量
const int move = 2;//1 :yidong 2 :fuzhi
const int layer = -1;//0:最初层; -1: 工作层; 1 - 256 : 指定层
const int trace_curves = 2; //轨迹状态, 1 开, 2 关
tag_t copies[1]; //复制后的TAG
uf5947(matrix, objects, &n_objects, &move, &layer, &trace_curves,copies , NULL, &status);
|
|