First of all, thank y'all so much for this service you are providing. We are so grateful for all the work y'all have put into this.
The issue I'm experiencing is with rotating a searchableSurfaceCollection that consists of a single searchableBox. The code executes without errors, but the searchableSurfaceCollection does not reflect the transform below.
Additionally, the searchableBox does render as is and the searchableSurfaceCollection does not appear at all.
ob{{ forloop.counter }}
{
type searchableBox;
min ({{ obstacle.x_initial|mul:.3048 }} 0 {{ obstacle.z_initial|mul:.3048 }});
max ({{ obstacle.x_final|mul:.3048 }} {{ obstacle.height|mul:.3048 }} {{ obstacle.z_final|mul:.3048 }});
}
rotatedOb{{ forloop.counter }}
{
type searchableSurfaceCollection;
mergeSubRegions true;
copy1
{
surface ob{{ forloop.counter }};
scale (3.0 2.0 3.0);
transform
{
coordinateSystem
{
type cartesian;
origin (0 0 0);
coordinateRotation
{
type axesRotation
e1 (0.707 0 0.707);
e3 (-0.707 0 0.707);
}
}
}
}
}
First of all, thank y'all so much for this service you are providing. We are so grateful for all the work y'all have put into this.
The issue I'm experiencing is with rotating a searchableSurfaceCollection that consists of a single searchableBox. The code executes without errors, but the searchableSurfaceCollection does not reflect the transform below.
Additionally, the searchableBox does render as is and the searchableSurfaceCollection does not appear at all.