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
def read_step(filepath): compound = read_step_file(filepath) topo = TopologyExplorer(compound) for i,face in enumerate( topo.faces() ): geom_surface = BRep_Tool().Surface(face) print(geom_surface.Bounds())
I use such code to access every face of my *.STEP file.
How can i get geom_surface's UV parametric surface function?
And why the surface is infinite while my *.STEP file is finite and bounded? (geom_surface.Bounds() return infinite U1 U2 V1 V2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use such code to access every face of my *.STEP file.
How can i get geom_surface's UV parametric surface function?
And why the surface is infinite while my *.STEP file is finite and bounded? (geom_surface.Bounds() return infinite U1 U2 V1 V2)
The text was updated successfully, but these errors were encountered: