diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2006-12-28 14:27:30 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2006-12-28 14:27:30 +0000 |
| commit | 822e53804bd058e6830ef9b5513b43b66a574eb2 (patch) | |
| tree | 5cfd483b9d683e3a502021c3c97774eff228659c /share/extensions/funcplot.inx | |
| parent | replace relative jumps with labels to prevent wrong target address (diff) | |
| download | inkscape-822e53804bd058e6830ef9b5513b43b66a574eb2.tar.gz inkscape-822e53804bd058e6830ef9b5513b43b66a574eb2.zip | |
Committed [ 1620672 ] Funcplot: New features and bug fixes. With some adjustments.
(bzr r2106)
Diffstat (limited to 'share/extensions/funcplot.inx')
| -rw-r--r-- | share/extensions/funcplot.inx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/share/extensions/funcplot.inx b/share/extensions/funcplot.inx index 5c9ba6230..6a6d740d1 100644 --- a/share/extensions/funcplot.inx +++ b/share/extensions/funcplot.inx @@ -4,18 +4,23 @@ <dependency type="executable" location="extensions">funcplot.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name="tab" type="notebook">
- <page name="sampling" _gui-text="Sampling">
+ <page name="sampling" _gui-text="Range and Sampling">
<param name="xstart" type="float" min="-1000.0" max="1000.0" _gui-text="Start x-value">0.0</param>
<param name="xend" type="float" min="-1000.0" max="1000.0" _gui-text="End x-value">1.0</param>
<param name="times2pi" type="boolean" _gui-text="Multiply x-range by 2*pi">false</param>
<param name="ybottom" type="float" min="-1000.0" max="1000.0" _gui-text="y-value of rectangle's bottom">0.0</param>
<param name="ytop" type="float" min="-1000.0" max="1000.0" _gui-text="y-value of rectangle's top">1.0</param>
<param name="samples" type="int" min="2" max="1000" _gui-text="Samples">8</param>
+ <param name="isoscale" type="boolean" _gui-text="Isotropic scaling (uses smallest: width/xrange or height/yrange)">false</param>
</page>
<page name="desc" _gui-text="Help">
<param name="pythonfunctions" type="description">The following functions are available:
(the available functions are the standard python math functions)
-ceil(x); fabs(x); floor(x); fmod(x,y); frexp(x); ldexp(x,i); modf(x); exp(x); log(x [, base]); log10(x); pow(x,y); sqrt(x); acos(x); asin(x); atan(x); atan2(y,x); cos(x); hypot(x,y); sin(x); tan(x); degrees(x); radians(x); cosh(x); sinh(x); tanh(x).
+ceil(x); fabs(x); floor(x); fmod(x,y); frexp(x); ldexp(x,i);
+modf(x); exp(x); log(x [, base]); log10(x); pow(x,y); sqrt(x);
+acos(x); asin(x); atan(x); atan2(y,x); hypot(x,y);
+cos(x); sin(x); tan(x); degrees(x); radians(x);
+cosh(x); sinh(x); tanh(x).
The constants pi and e are also available. </param>
</page>
@@ -23,6 +28,8 @@ The constants pi and e are also available. </param> <param name="fofx" type="string" _gui-text="Function">exp(-x*x)</param>
<param name="fponum" type="boolean" _gui-text="Calculate first derivative numerically">true</param>
<param name="fpofx" type="string" _gui-text="First derivative">x</param>
+ <param name="remove" type="boolean" _gui-text="Remove rectangle">true</param>
+ <param name="drawaxis" type="boolean" _gui-text="Draw Axes">false</param>
<effect>
<object-type>rect</object-type>
<effects-menu>
|
