JavaSketchpad® compiler User Manual

JavaSketchpad documentation see the website of Key Curriculum Press : ... The element id can be just its rank in the element list. {A} Point (100, 200);. {B} Point ...
222KB taille 55 téléchargements 62 vues
JavaSketchpad® compiler User Manual Preliminary notice This is not the documentation for JavaSketchpad but a user manual of my compiler. For the JavaSketchpad documentation see the website of Key Curriculum Press : http://www.keypress.com/sketchpad/javasketchpad/ The syntax is that of my on line compiler. The differences from the original syntax of JavaSketchpad will be given in the text. For a graphical interface, see Key Curriculum Press.

Summary General syntax p.2 Comments p.2 Code lines p.3 Options p.4 Points p.4 Lines p.5 Circles p.5 Filled items p.6 Measurements p.6 Calculations p.7 Transforms p.8 Captions p.9 Locus p.9 Buttons p.10 Constructions and examples p.11 Arcs p.11 Intersections p.11 Conditional constructions p.12 Using calculates p.13 Import/Export p.14 Appendix p.15 Applet options p.15 Summary of items p.16 Functions not available p.17 Macros p.18 Copyright and licence p.19

General syntax A JavaSketchpad drawing is built from the Java applet and the drawing script. Inside an HTML page, it is defined as : alternate display The Java applet is set by the jsp4.jar file The drawing script by the value of the 'Construction' parameter Other parameters are used to set background color etc. See appendix. These applet parameters can't be modifed on line by the compiler. Alternate display is, in HTML, what is displayed instead of applet when the Java engine is not available. Every line in the Construction.value must comply with the original syntax of JavaSketchpad, as specified by Key Curriculum Press. It is the result of executing the compiler from the source text which is a different syntax. Only the source text format is defined here. Allthough very near from the original JavaSketchpad format, there are big differences.

Comments Empty lines are ignored. A comment is a line in curly braces { } Comments spanning on more than one line should have every line enclosed in curly braces. The curly braces and the " characters are forbidden inside the comment istself. Examples: { *** This is a comment *** } { and this is a comment spanning } { on several lines } { blank characters outside the brackets are ignored }

Code line A code line has the general format { } ( … )…( < parameters > …) […] ; and ends with a semicolon ; is the name of the geometric item. It can be made of letters, numbers or _@§&~|!?=:/^*+.– or space characters and should not begin with a number or space. The # and $ characters are reserved for future meaning. Examples : {A1} {A*}

{A^B}

{A - B}

{@ABC}

The leading numbers and spaces are just ignored, also are the trailing spaces {1 A} , { 1A } or { A } define the same name A as {A} { id } is optional. By default, an automatic name is generated by the compiler. is the type of geometric item to generate : Point, Segment, Circle etc. Lists of parameters, separated by comma and in parentheses, depending on entity. For instance coordinates of a point, center of circle, text of a message etc. : Point (100,200); Circle (A, B); FixedText (20,40,'This is just text'); ShowButton (400,40,'Show')(A,B); All parameters must be defined before their using. Forward references are prohibited : In Circle (A, B); points A and B must have been previously defined. The element id can be just its rank in the element list {A} Point (100, 200); {B} Point (100, 300); Segment (1,2); is the same as Segment (A,B), and is replaced by Segment (A,B) in the source text by the compiler. This allows to import existing scripts into the compiler. Of course the generated code is allways Segment (1,2), only syntax understood by the applet. Beween square brackets [ ], defines the display options of the element, displayed label, color etc. : Point (100,200) [label('A'), red]; Note : 1) don't confuse the label (what is displayed) and the name (for referencing in the script) {A} Point (100,200)[label('B')]; A is the name of the point, for further reference like in Segment (A,…) B is what is displayed on the drawing. Of course it is better to put the same, to avoid mistakes … 2) {id} is a comment and ignored by the JavaSketchpad applet. It is meaningfull only for the compiler. Also comments after the ; may be allowed in the applet, but are forbidden in the compiler. Also several items on the same line are forbidden. Point(100,200); { comment} Point (150,300); is illegal

Options label( 'text' )

Defines the displayed label of a point. Only points may have a label The text shoul not contain " caracters, or look like HTML tags The ' shall be doubled ' ' and to emulate a " write ' ' ' ' black, white, red, green, blue, yellow, cyan, magenta preset colors color( r, g, b) Any color, r, g, b being red, green and blue parts, from 0 to 255 hidden Invisible item thick Thick line. Only linear items may be thick. traced The item leaves a trace when moved. Surface items are forbidden layer(n) Drawing layer, increasing for items being above others. n = 1 to 999 Other options, available in JavaSketchpad, are rejected by this compiler.

Points Points may be defined from scratch or result from geometric constructions. Point (x,y);

Set a movable point, initial coordinates x, y pixels on the applet     x, y are limited by compiler to visible area 0 y is downward, although y coordinates axis is upward, as it should. pixel 0 is at top and pixel 499 at bottom !

FixedPoint (x,y); Set a fixed point that can't be dragged with the mouse. Set a moving point, constrained to stay on object obj which shall be Point on object (obj, k); a segment, ray, line, circle or polygon (perimeter). k sets the initial location (ratio in segment, angle in circle…) Example: {AB} Segment (A,B); Point on object (AB, 0.333333); The point is constrained to stay on segment AB, initial location is 1/3 of segment from B (!!!) Other points result from geometric constructions. Midpoint (segment);

Midpoint of a segment

Intersect (straight, straight); Intersection of two linear items st

1 intersection point of circle with obj which is another circle or a linear Intersect1 (obj, circle); st nd item. It is hard to know if the desired point is the 1 or the 2 intersection point of two circles. Better find other equivallent constructions of that point. Intersect2 (obj, circle);

nd

2 intersection point with the circle.

And also points from geometric transforms of other points : see "transforms"

Straight lines Straight lines are defined by two previously defined or constructed points.   They have direction point2 Segment (pointB, pointA);

Defines the segment AB

Ray (pointB, pointA);

Defines the ray AB,starting from A (!!!)

Line (pointB, pointA);

Defines the endless line AB

Parallel (straight, P);

Parallel to the line/segment/ray 'straight', going through P Has the same direction.

Perpendicular (straight, P);

Perpendicular from P

  to   line/segment/ray "!$# %'& (*)+,(-# %/. 'straight', 0 13254

Other lines result from geometric transforms of previously constructed segment, ray or line, with the same type, segment transformed into a segment etc. See 'transforms".

Circles A circle is defined by the center and one point, or the radius, resulting from previously known points or measurements. Circle (center, point);

Circle with given center going through given point

Circle by radius (center, radius);

Circle with given center and given radius.

The radius may be a known segment, a distance measurement or calculated. The compiler rejects a radius which is obviously not a distance : area, angle, slope or ratio are rejected. Put them through a calculate, at your own risks for the dumb geometric meaning which may result. Circles going through three given points should be constructed explicitely. The center is the intersection point of two segment bissectors, perpendicular from the midpoints. That is : {AB} Segment (A,B); {BC} Segment (B,C); {M} Midpoint (AB); {N} Midpoint (BC); {d1} Perpendicular (AB, M); {d2} Perpendicular(BC, N); {O} Intersect (d1, d2); Circle (O, A); Intermediate items may be declared [hidden]. The compiler doesn't actually handle macros which would allow to define all this as "Circumcircle (A, B, C)" Other constructions in chapter "Constructions and examples ".

Filled items Circle interior (circle); Defines the disk made of the interior of circle. It is filled by the default or the given color. Polygon (A,B,C…Z) Defines the polygon from the successive vertices, In order A, B, …Z. At least 3 points, then fills the inetrior of polygon. The perimeter couls be used as path for the "Point on object" and "Locus" The perimeter is not drawn. Use a Circle, or a set of Segment to display it. These surface items easily play hide and seek and they should use the layer( ) option to define which are in front of others. The thick option has no meaning and the traced option would soon fill up the entire plane, so they are rejected by the compiler. These items may be copied by geometric transforms.

Measurements and calculations Measurements display the values, lengths, angles or areas measured on the drawing, but they may also be used as parameters in further constructions. Every one has the common parameters : x, y location of measurement on the display 'text' text displayed before the measured value JavaSketchpad allows a suffix after the measured value, this is not presently handled by the compiler. If they are used just as parameter for further constructions, they may be set [hidden]. Parameter (value, x, y, 'text' ); Defines a constant parameter Length (segment, x, y, 'text' ); Length of segment, in pixels Distance (A, B, x, y, 'text' );

Distance between point A and B, in pixels

Perimeter (Poly, x, y, 'texte' ); Perimeter of a polygon Circumference (circle, x, y, 'text' );

Perimeter of circle

Radius (circle, x, y, 'text' );

Radius of circle, in pixels

Area (obj, x, y, 'text' );

Area in pixel² of object circle, polygon or disk 



Angle (A, B, C, x, y, 'text' ); Angle (BA,BC), in radians from The applet allows displaying angles in radians or in degrees, the compiler sets this option to "radians" to comply with other angle values which are allways in radians. + if anticlockwise from A toward C, – if clockwise. Slope (straight, x, y, 'text' );

Slope of linear object (tangent of angle from horizontal)

Ratio/Segments (sgmt1, sgmt2, x, y, 'text' );

segm1/segm2 (!!!)

AC/AB (!!!) prefer Ratio/Points to Ratio/Segment if some Ratio/Points (A, B, C, x, y, 'text' ); points may collapse, then suppressing the segment from drawing.

These measures are typed by the compiler, it is forbidden to use an area or angle as a radius value for instance. Value types : Dist lengths, distances, perimeters Angle angles Area areas Ratio dimensionless values : slope, length ratio Calc calculated values or constant parameters

Calculations The measurements may be used for a calculation : Calculate (x, y, 'text', 'expr' ) (p1, p2, … pn); This calculation is performed from the parameters p1 to pn which should be previous measurments or previous calculations results. expr defines the calculation in reverse Polish notation.



        !" # !$ ! %  

Every part of expr is a Index of a parameter : p1 is named A, p2 is B etc. Hence a maximum of 26 parameters. An operation + – * / ! or ^, ^ state for exponentiation, ! states for negation A function @xxxx among @sin_ @cos_ @tan_ @asin @acos @atan @sgn_ @abs_ @rond @trnc @sqrt @ln__ @log_ @ln__ is the natural logarithm (base e), @log_ the base 10 logarithm @rond rounds to nearest integer @trnc rounds to lowest absolute value integer (toward 0) @sgn_ -1, 0, 1 note the 4 characters after the @, completed by some '_' Angles are in radians The reverse Polish notation consists in stacking successive values and consuming the stack during operations. Then A+B is written 'AB+' in reverse Polish notation : Put A on the stack, put B on the stack, sum the two upper values of the stack and put the result on the stack instead.

A:

B: A

+: B A

A+B

This notation avoids using parentheses and the applet can execute it just by reading from left to right. 'AB+C*' states for (A+B)*C which could also be written as 'CAB+*' because (A+B)*C = C*(A+B). a last example (A+B)*(C+D) is 'AB+CD+*' The results of calculation is finally at top of stack, and should be the only thing on the stack. Non commutative operations / - and ^ result into 'AB/' = A/B, 'AB –' = A – B and 'AB^' = A^B (A exponent B) Space characters are ignored but for separate two consecutive numbers For instance '1 2+' Ambiguous notation 'AB–1…' as A–B then put +1 on the stack, or put –1 on the stack in addition of A and B is solved by lack of unary minus, in contrary from what is written in JavaSketchpad documentation, –1 is allways – (operation) then stack 1. Negative values are obtained from x! (for instance 3.5! is -3.5) or just using substraction instead of addition.

Geometric transforms Allready constructed items may be copied through a geometric transform. The copy has the same type as the original object : a segment gives a segment etc. Reflection (obj, straight);

Objet 'obj' is copied by symetry through line, segment or ray 'straight'

Dilation (obj, P, k);

Dilation (homothecy) centered in P with ratio k (> or < 1, even < 0)

Dilation/SegmentRatio (obj, P, segm1, segm2);

Dilation with center P and ratio segm1/segm2

Dilation/3PtRatio (obj, P, A, B, C); Dilation with center P and ratio AB/AC. Same note as Ratio/points, prefer 3PtRatio to SegmentRatio if points may collapse Dilation/MarkedRatio (obj, P, ratio); Dilation centered in P, ratio defined by the previous measurement or calculation 'ratio' Rotation (obj, P, a);

Rotation centered in P with angle a radians

Rotation/MarkedAngle (obj, P, A, B, C);

Rotation centered in P with angle ABC

Rotation/MeasuredAngle (obj, P, angle); Rotation centered in P with angle previously measured or calculated Translation (obj, dx, dy );

Translation of objet by (dx, dy) (dy>0 upward !!!)

VectorTranslation (obj, A, B) Translation by vector AB Translation/FixedAngle/MarkedDistance (obj, d, a_num) Translation by previously measured distance d, in direction of angle a from horizontal. Translation/MarkedAngle/FixedDistance (obj, a, d_num ) Translation by distance d pixels, in direction of previously measured angle a, from horizontal. Translation/MarkedAngle/MarkedDistance (obj, a, d ) Translation of previously measured distance d, in direction of previously measured angle a, from horizontal. {d} Distance (P,Q,10,10,' ')[hidden]; {a} Angle (B,A,C,10,10,' ')[hidden]; {O1} Translation/MarkedAngle/MarkedDistance (O,a,d)[label('O''')];

Copy point O as O' in direction defined by angle BAC And distance equals to PQ

Captions I addition to measurements, we can also display any text : FixedText (x, y, 'texte');

Displays text at location x,y on the applet screen The text object defined by this can be copied by :

PeggedText (P, obj );

The text or measurementt object is 'glued' to point P, the moves zlong with the point.

ConcatText (x, y, obj, obj, … );

The text/measurements obj are concatenatedand the resulting text object displayed at location x,y.

Locus Locus (P, M, path, n); Draw the locus of point P when the free point M moves along the given path which should be a segment, ray, line, circle or polygon. M should be previously declared as 'Point on object', and path should be this parent object. n is the number of calculated points to draw the locus. The locus objects can't be copied by a transform and can't be used as parent for "Point on object". No check is done for point P being constructed from M. Example : draw a parabola {A} Point (50,400)[label('(d)')]; {B} Point (600,400); {AB} Line (A,B); {F} Point (300,320)[label('F')]; {M} Point on object (AB, 0.8)[label('M')]; {FM} Segment (F,M); {H} Midpoint (FM)[hidden]; {m} Perpendicular (FM,H); {d} Perpendicular (AB,M); {P} Intersect (m,d)[label('P')]; {parab} Locus (P,M,AB,100);

The drawn locus changes in real time when moving the base points A,B and F Moving point M shows how the parabola is drawn. Drawing the locus of a segment/ray/line is les usefull as it just draws the segment for every position. Envelope of line is visible but in a mess of lines. Here the enveloppe of m is the same parabola, Locus (m,M,AB,100); shows this envelope but draws 100 lines m ! When a locus has asymptotes, spurious lines may appear. If n is large enough, these lines are just … the asymptotes.

Buttons Buttons trigger actions as show/hide parts of the drawing, or animate the construction. Like measurements, they allways have the position x,y and the caption parameter. HideButton (x, y, 'text' )(obj, obj, … );

All the given objects are hidden.

ShowButton (x, y, 'text' )(obj, obj, … ); [hidden].

All the given objects are displayed, even if declared

MoveButton (x, y, v, 'text' )(A, A', B, B', … ); The free points A', B' … are move toward the corresponding points A, B … at a speed v pixels per frame. (care of the order : destination, point …) AnimateButton (x,y,'text') (A, Pa, B, Pb, …) (va, vb, …) (fa, fb, …) (ma, mb, …); The free points A, B, … are moved along corresponding paths Pa, Pb, … At speeds va, vb, … Points should be 'on object' and move on that object. fa, fb, … and ma, mb, … are flags that define the moving fashion f = 0 indefinite repeat, f = 1 once m = 0 anti-clockwise on a circle, back and forth on a line m = 1 clockwise on a circle, forth only on a line SimultaneousButton (x,y,'text')(obj, obj, … ); All the buttons obj are acted. This allows to declare some {v} ShowButton [hidden] and some {h} HideButton [hidden], then a SimultaneousButton (v,h) simulateneously shows objects declared in v and hides the objects declared in h.

Constructions and examples Drawing an arc { ================ } { *** Draw arc *** } { ================ } {A} Point (100,200)[label('A')]; {B} Point (150,300)[label('B')]; {C} Point (130,100)[label('C')]; {BC} Segment (B,C)[hidden]; {M} Point on object (BC,0.3)[hidden]; {P} Rotation/MarkedAngle (B,A,B,A,M)[hidden]; {arc} Locus (P,M,BC,100); {Ab} Ray (B,A); {Ac} Ray (C,A);

                  !"  # $%'&"()* +, -).+')/(01)&2-34 , &, &, 5 &2 smaller arcs. For instance to draw a semi-circle. { ======================== } { *** Draw half circle *** } { ======================== } {A} Point (100,100)[label('A')]; {B} Point (180,200)[label('B')]; {AB} Segment (A,B)[hidden]; {O} Midpoint (AB)[label('O')]; { pi/2 } {H} Rotation (B,O, 1.5707963267948966)[hidden]; {s1} Segment (A,H)[hidden]; {M1} Point on object (s1, 0)[hidden]; {P1} Rotation/MarkedAngle (A,O,A,O,M1)[hidden]; {arc1} Locus (P1,M1,s1,100); {s2} Segment (B,H)[hidden]; {M2} Point on object (s2, 0)[hidden]; {P2} Rotation/MarkedAngle (B,O,B,O,M2)[hidden]; {arc2} Locus (P2,M2,s2,100);

6728* 0 +9&"()2:&"()*-);,