Generic 3D Topology Viewer With more Parameters supportsExtend TopologyViewer3D by supporting additional parameters of "ADD" and "UPDATE" commands. Example UsageA simple console driven topology viewer: Pipeline( ConsoleReader(), lines_to_tokenlists(), TopologyViewer3DWithParams(), ).run() Then at runtime try typing these commands to change the topology in real time: >>> DEL ALL >>> ADD NODE 1 "1st node" (0,0,-10) teapot >>> ADD NODE 2 "2nd node" randompos sphere image=../../../Docs/cat.gif >>> ADD NODE 3 "3rd node" randompos - bgcolour=(255,255,0);bgcolour=(0,255,255) >>> UPDATE NODE 1 name=1st;bgcolour=(0,255,0) >>> UPDATE NODE 3 name=3rd;bgcolour=(255,0,0);fgcolour=(0,0,255);fontsize=100 >>> ADD NODE 1:1 "1st child node of the 1st node" " ( 0 , 0 , -10 ) " - >>> ADD NODE 1:2 "2nd child node of the 1st node" randompos - "fontsize = 20" >>> ADD LINK 1 2 >>> ADD LINK 3 2 >>> DEL LINK 1 2 >>> ADD LINK 1:1 1:2 >>> DEL NODE 1 How does it work?Extend TopologyViewer3D by supporting additional parameters of "ADD" and "UPDATE" commands. The format of "ADD" commands: [ "ADD", "NODE", <id>, <name>, <positionSpec>, <particle type>, <parameters> ] The format of "UPDATE" commands: [ "UPDATE", "NODE", <id>, <parameters> ] The format of parameters: pa=pa_value;pb=pb_value Add quotation if there are spaces within parameters. Available parameters:
See Kamaelia.PhysicsGraph3D.TopologyViewer3D.TopologyViewer3D for more information. Kamaelia.Visualisation.PhysicsGraph3D.TopologyViewer3DWithParams.TopologyViewer3DWithParamsclass TopologyViewer3DWithParams(Kamaelia.Visualisation.PhysicsGraph3D.TopologyViewer3D.TopologyViewer3D)TopologyViewer3DWithParams(...) -> new TopologyViewer3DWithParams component. A component that takes incoming topology (change) data and displays it live using pygame OpenGL. A simple physics model assists with visual layout. Particle types, appearance and physics interactions can be customised. It extends TopologyViewer3D by supporting additional parameters of "ADD" commands. Keyword arguments (in order):
Methods defined hereWarning! You should be using the inbox/outbox interface, not these methods (except construction). This documentation is designed as a roadmap as to their functionalilty for maintainers and new component developers. __init__(self, **argd)x.__init__(...) initializes x; see x.__class__.__doc__ for signature doCommand(self, msg)Proceses a topology command tuple: [ "ADD", "NODE", <id>, <name>, <positionSpec>, <particle type> ] [ "DEL", "NODE", <id> ] [ "ADD", "LINK", <id from>, <id to> ] [ "DEL", "LINK", <id from>, <id to> ] [ "DEL", "ALL" ] [ "GET", "ALL" ] updateParticle(self, node_id, **params)updateParticle(node_id, **params) -> updates the given node's parameters/attributes if it exists
Methods inherited from Kamaelia.Visualisation.PhysicsGraph3D.TopologyViewer3D.TopologyViewer3D :
FeedbackGot a problem with the documentation? Something unclear that could be clearer? Want to help improve it? Constructive criticism is very welcome - especially if you can suggest a better rewording! Please leave you feedback here in reply to the documentation thread in the Kamaelia blog. -- Automatic documentation generator, 05 Jun 2009 at 03:01:38 UTC/GMT |
Kamaelia
is an open source project originated from and guided by BBC
Research. For more information browse the site or get in
contact.
This is an ongoing community based development site. As a result the contents of this page is the opinions of the contributors of the pages involved not the organisations involved. Specificially, this page may contain personal views which are not the views of the BBC. (the site is powered by a wiki engine)
(C) Copyright 2008 Kamaelia Contributors, including the British Broadcasting Corporation, All Rights Reserved.