<?xml version="1.0" encoding="ISO-8859-1"?>

<!-- initializes zeGraph -->
<ze_graph>

    <!-- creates a render object --> 
    <ze_render>
    
        <!-- calls the size function of the render -->
        <size>300, 300</size>
        
        <!-- creates a scene object and adds it to the render -->
        <ze_scene>
            
            <!-- creates a node object and sets it
            as the roote node of the scene
            -->
            <ze_node>
            
                <!-- creates a polygon object and adds it the node -->
                <ze_polygon>
                
                    <!-- sets the polygon as consisted of triangles -->
                    <type>triangles</type>
                    
                    <!-- creates a vertex object for the polygon -->
                    <ze_vertex>
                    
                        <!-- adds data to the vertex object -->
                        <append>
                            -100, -100, 0
                            100, -100, 0
                            0, 100, 0
                        </append>
                    </ze_vertex>
                    
                    <!-- creates a color object for the polygon -->
                    <ze_color>
                    
                        <!-- adds data to the color object -->
                        <append>
                            0, 0, 1, 1
                            0, 1, 0, 1
                            1, 0, 0, 1
                        </append>
                    </ze_color>
                </ze_polygon>
            </ze_node>
        </ze_scene>
        
        <!-- display the image -->
        <show>any</show>
        
    </ze_render>
</ze_graph>