Jafar
|
This module reads points and segments from GML files.
You can find some examples of GML files at CityGML's website.
This module use Qt's XML library.
Exemple of use of the GML module to display it:
parser = Gml::Parser.new("SimpleBuildings.xml")
v = Viewer3d::Viewer3D.new
root = Viewer3d::Group.new
pc = Viewer3d::PointsCloud.new( parser.points, nil, 2.0 )
root.addChild( pc.node )
sc = Viewer3d::SegmentsCloud.new( parser.segments, nil, 2.0 )
root.addChild( sc.node )
v.view.setSceneData( root )
The interface of the module is generated from the following files:
try
{ } catch
block for this module. Classes | |
class | jafar::gml::GmlException |
Base class for all exceptions defined in the module gml. More... | |
class | jafar::gml::Parser |
This class allow the parsing of GML file. More... |
Generated on Wed Oct 15 2014 00:37:30 for Jafar by doxygen 1.7.6.1 |