source: trunk/examples/graph/tool.xml @ 62

Last change on this file since 62 was 62, checked in by dkearney, 19 years ago

moving back to the original version of this dir

File size: 830 bytes
Line 
1<?xml version="1.0"?>
2<run>
3    <tool>
4        <title>Graphing Calculator</title>
5        <about>Press Simulate to view results.</about>
6        <command>python @tool/graph.py @driver</command>
7    </tool>
8    <input>
9        <string id="formula">
10            <about>
11                <label>Formula</label>
12                <hints>Example: 2*x + 1</hints>
13            </about>
14            <size>30x5</size>
15        </string>
16        <number id="min">
17            <about> <label>From x</label> </about>
18            <default>0</default>
19        </number>
20        <number id="max">
21            <about> <label>To x</label> </about>
22            <default>1</default>
23        </number>
24    </input>
25    <output>
26        <curve id="result">
27            <about> <label>Formula: Y vs X</label> </about>
28        </curve>
29    </output>
30</run>
Note: See TracBrowser for help on using the repository browser.