Skip to content

Trouble Rotating searchableSurfaceCollection #6

@elitrefts0012

Description

@elitrefts0012

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);
                    }
                }
            }
        }
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions