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.
14 lines
294 B
14 lines
294 B
2 years ago
|
#pragma once
|
||
|
|
||
|
#include"../geo/geodisplay.h"
|
||
|
|
||
|
void addObj(print3d& result,print3d& x){
|
||
|
int sizenum=result.p.size();
|
||
|
Vector3i tmpsize(sizenum,sizenum,sizenum);
|
||
|
result.p.insert(result.p.end(),x.p.begin(),x.p.end());
|
||
|
for(auto i:x.f){
|
||
|
result.f.push_back(i+tmpsize);
|
||
|
}
|
||
|
}
|
||
|
|