Re: [Pythonocc-users] navigating data

2010-05-17 Thread Denis Barbier
On 2010/5/17 Patrick Janssen wrote: > As a beginner, one of the difficulties I am having is navigating the data. > Bottom up it seems ok - start from points, create geometry, then create > topology > > p1 = gp_Pnt(0,0,0) > p2 = gp_Pnt(0,0,10) > handle_geom_trimmed_curve = GC_MakeSegment(p1, p2).Val

[Pythonocc-users] navigating data

2010-05-17 Thread Patrick Janssen
As a beginner, one of the difficulties I am having is navigating the data. Bottom up it seems ok - start from points, create geometry, then create topology p1 = gp_Pnt(0,0,0) p2 = gp_Pnt(0,0,10) handle_geom_trimmed_curve = GC_MakeSegment(p1, p2).Value() topods_edge = BRepBuilderAPI_MakeEdge(handle