0002964: PartDesign Datum geometry invisible in 3D view if no geometry
present in Body
0002968: Datum items invisible on opening saved files
This commit is contained in:
AjinkyaDahale
2017-03-17 02:57:00 +05:30
committed by Yorik van Havre
parent 65342e53e7
commit d0da403adc

View File

@@ -357,7 +357,7 @@ SbBox3f ViewProviderDatum::getRelevantBoundBox () const {
SbBox3f ViewProviderDatum::getRelevantBoundBox (
SoGetBoundingBoxAction &bboxAction, const std::vector <App::DocumentObject *> &objs )
{
SbBox3f bbox(0,0,0, 0,0,0);
SbBox3f bbox = defaultBoundBox();
// Adds the bbox of given feature to the output
for (auto obj :objs) {
@@ -380,6 +380,7 @@ SbBox3f ViewProviderDatum::getRelevantBoundBox (
}
}
// TODO: shrink bbox when all other elements are too small
return bbox;
}