Describe the bug
The part of the function declaration is missing. This bug corresponds to functions getPointOnCurve and getDirectionOfCurve for the entities:
template <>
carve::geom::vector<3> getPointOnCurve(const EXPRESSReference<typename IfcEntityTypesT::IfcThirdOrderPolynomialSpiral>& thirdOrderPolynomial,
const typename IfcEntityTypesT::IfcParameterValue& parameter) const noexcept(false)
{
return getPointOnCurve(thirdOrderPolynomial, parameter * this- >UnitConvert()->getLengthInMeterFactor());
}
Without this part the code never reaches functions getPointOnCurve/getDirectionOfCurve and calculates points with catresianPointList.
To Reproduce
Steps to reproduce the behavior:
- Go to 'CurveConverter'
- Scroll down to the line 2755
- See declarations
Expected behavior
When rendering each type of geometry, we should not see the message on the command windows that corresponding geometry is not supported yet.
CMake configuration
If applicable, list any special configurations you have selected in CMake.
- EARLYBINDING_WITH_IFC4X3_RC4: selected
Describe the bug
The part of the function declaration is missing. This bug corresponds to functions getPointOnCurve and getDirectionOfCurve for the entities:
Without this part the code never reaches functions
getPointOnCurve/getDirectionOfCurveand calculates points with catresianPointList.To Reproduce
Steps to reproduce the behavior:
Expected behavior
When rendering each type of geometry, we should not see the message on the command windows that corresponding geometry is not supported yet.
CMake configuration
If applicable, list any special configurations you have selected in CMake.