Re: [Pythonocc-users] face does not show in display

2011-01-05 Thread jelle feringa
That's very instructive Thomas, I completely forgot about this too... On Wed, Jan 5, 2011 at 5:50 AM, Thomas Paviot wrote: > 2011/1/4 Balint Balassa > > Hi everyone, >> >> I'm relatively new to pythonOCC and I'm having a bit of a problem with my >> code. It's really quite basic. I created a cyl

Re: [Pythonocc-users] face does not show in display

2011-01-04 Thread Thomas Paviot
2011/1/4 Balint Balassa > Hi everyone, > > I'm relatively new to pythonOCC and I'm having a bit of a problem with my > code. It's really quite basic. I created a cylinder and extracted an edge, > which I made into a wire and a face, which in theory should not be a > problem. Unfortunately the fac

Re: [Pythonocc-users] face does not show in display

2011-01-04 Thread jelle feringa
Sorry, I forgot the didactic bit; make_face builds a topological entity from a surface. the fact that make_face can also built planar surfaces is in fact a courtesy; make_face expects a description of a surface, anything from a coons patch to a plane with its limits specified. perhaps you thought

Re: [Pythonocc-users] face does not show in display

2011-01-04 Thread jelle feringa
Hello Balint, happy to hear you're into pythonocc. i think you're heading for RSI if you type so much! pythonocc is more pythonic than you think ;) here's a cleaned up version; import math from OCC.Utils.Construct import * from OCC.Display.SimpleGui import * display, start_display, add_menu, add_f

[Pythonocc-users] face does not show in display

2011-01-04 Thread Balint Balassa
Hi everyone, I'm relatively new to pythonOCC and I'm having a bit of a problem with my code. It's really quite basic. I created a cylinder and extracted an edge, which I made into a wire and a face, which in theory should not be a problem. Unfortunately the face does not show up in the display