We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User requested that we have simpler routine for setting or getting attributes. Currently, one uses the syntax MEnt_Get_AttVal(mentity, attrib, &ival, &rval, &pval); MEnt_Set_AttVal(mentity, attrib, ival, rval, pval); User wants MEnt_Get_AttVal_Int(mentity, attrib, &ival); MEnt_Set_AttVal_Int(mentity, attrib, ival); MEnt_Get_AttVal_Dbl(mentiy, attrib, &rval); MEnt_Set_AttVal_Dbl(mentity, attrib, rval); MEnt_Get_AttVal_Vec(mentity, attrib, &ncomp, rvalarr); MEnt_Set_AttVal_Vec(mentity, attrib, ncomp, rvalarr); MEnt_Get_AttVal_Tns(mentity, attrib, &ncomp, rvalarr); MEnt_Set_AttVal_Tns(mentity, attrib, ncomp, rvalarr); MEnt_Get_AttVal_Ptr(mentity, attrib, &pval); MEnt_Set_AttVal_Ptr(mentity, attrib, pval);
The text was updated successfully, but these errors were encountered:
Attempt MeshToolkit#12 to figure out why parallel runs fail on travis…
938a8bd
…-ci - try to install newer version of gcc
No branches or pull requests
User requested that we have simpler routine for setting or getting attributes. Currently, one uses the syntax
MEnt_Get_AttVal(mentity, attrib, &ival, &rval, &pval);
MEnt_Set_AttVal(mentity, attrib, ival, rval, pval);
User wants
MEnt_Get_AttVal_Int(mentity, attrib, &ival);
MEnt_Set_AttVal_Int(mentity, attrib, ival);
MEnt_Get_AttVal_Dbl(mentiy, attrib, &rval);
MEnt_Set_AttVal_Dbl(mentity, attrib, rval);
MEnt_Get_AttVal_Vec(mentity, attrib, &ncomp, rvalarr);
MEnt_Set_AttVal_Vec(mentity, attrib, ncomp, rvalarr);
MEnt_Get_AttVal_Tns(mentity, attrib, &ncomp, rvalarr);
MEnt_Set_AttVal_Tns(mentity, attrib, ncomp, rvalarr);
MEnt_Get_AttVal_Ptr(mentity, attrib, &pval);
MEnt_Set_AttVal_Ptr(mentity, attrib, pval);
The text was updated successfully, but these errors were encountered: