Fresco/Berlin/modules/Unidraw UnidrawKitImpl.cc,1.11,1.12
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Berlin/modules/Unidraw
In directory purcel:/tmp/cvs-serv1225/Berlin/modules/Unidraw
Modified Files:
UnidrawKitImpl.cc
Log Message:
Initial checkin of a scene graph debugging framework.
To activate run the server with the -D option (and -l if you want to
see the log output of course). To get a dot-file of the current
scene graph send a USR1 signal to the server process. It will then
dump the graph into /tmp/debug.dot. Use graphviz's dot-tool to turn that
file into a PS-drawing of the scene graph (cat /tmp/debug.dot | dot -Tps).
TODO: * add more information to the output (transformation, allocation, etc.)
* make sure all graphics get registered. We have a couple of "unknowns"
in the dump as of now.
Index: UnidrawKitImpl.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/modules/Unidraw/UnidrawKitImpl.cc,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- UnidrawKitImpl.cc 18 Feb 2003 07:26:37 -0000 1.11
+++ UnidrawKitImpl.cc 26 Feb 2003 00:19:08 -0000 1.12
@@ -71,7 +71,8 @@
Unidraw::View_ptr UnidrawKitImpl::create_view(Graphic_ptr g, Unidraw::Model_ptr m)
{
- return create_and_set_body<Unidraw::View>(new UViewImpl(m), g);
+ return create_and_set_body<Unidraw::View>(new UViewImpl(m), g,
+ "UnidrawKit/create_view");
}
Fresco::FigureKit_ptr UnidrawKitImpl::figures()