Dear friends,
I created a new csys which I want to redefine the reference. ProFeatureReferenceEdit needs old & new references in form of array. but I have only one old and new reference.
Any possibility to convert one reference to array format? Any suggestions are welcome
status = ProFeatureCreate(input_destmdlSel, pro_e_feature_tree, opts, 1, &feature, &errors);
status = ProElementFree(&pro_e_feature_tree);
status = ProFeatureReferenceEdit((ProSolid)newmdl, &feature, &cSysRef, &cSysRef_2, PRO_REGEN_FORCE_REGEN);
Solved! Go to Solution.
if a question would be rephrased in terms of how to add something to an array instead of how to convert... - the answer would be quite obvious:
use ProArrayAlloc(...) followed by ProArrayObjectAdd(...)
HIH
if a question would be rephrased in terms of how to add something to an array instead of how to convert... - the answer would be quite obvious:
use ProArrayAlloc(...) followed by ProArrayObjectAdd(...)
HIH