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

Last change on this file since 5119 was 3075, checked in by gah, 12 years ago
File size: 728 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            <default>2*x+1</default>
16        </string>
17        <number id="min">
18            <about> <label>From x</label> </about>
19            <default>0</default>
20        </number>
21        <number id="max">
22            <about> <label>To x</label> </about>
23            <default>1</default>
24        </number>
25    </input>
26</run>
Note: See TracBrowser for help on using the repository browser.