You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried using code like following, but does not seem to work. Any suggestions appreciated.
//Added moveFace method on SolidNAN_METHOD(Solid::moveFace){NanScope();Solid*pThis=ObjectWrap::Unwrap<Solid>(args.This());Face*pf=NULL;if(!extractArg(args[0],pf)){NanThrowError("invalid arguments moveFace : expecting <FACE>");NanReturnUndefined();}gp_Trsftransformation;doublex=0,y=0,z=0;ReadPoint(args[1],&x,&y,&z);transformation.SetTranslation(gp_Vec(x,y,z));//This does not work//Event BRepTools_ReShape does not work. pf->face().Move(transformation);NanReturnUndefined();}
The text was updated successfully, but these errors were encountered:
Tried using code like following, but does not seem to work. Any suggestions appreciated.
The text was updated successfully, but these errors were encountered: