CaRMetal
CaRMetal is an interactive geometry program which inherited the C.a.R. engine. The software has been created by Eric Hakenholz, in Java. CaRMetal is free, under GNU GPL license. It keeps an amount of functionality of C.a.R. but uses a different graphical interface which purportedly eliminates some intermediate dialogs and provides direct access to numerous effects. Constructions are done using a main palette, which contains some useful construction shortcuts in addition to the standard compass and ruler tools. These include perpendicular bisector, circle through three points, circumcircular arc through three points, and conic section through five points. Also interesting are the loci, functions, parametric curves, and implicit plots. Element thickness, color, label, and other attributes can be set using a separate panel.
CaRMetal also supports a configurable restricted construction palette and has assignment capabilities, which use an apparently unique feature called Monkey. CaRMetal has a scripting language which allows the user to build rather complex figures like fractals. CaRMetal has several locales including French, English, Spanish, German, Italian, Dutch, Portuguese and Arabic.
Didactic interest
Anticipation
When one chooses a tool like the parallel to a line through a point, or a circle, the intended object appears in yellow color and follows the mouse movements. This allows the user to make conjectures even before the construction is finished. This constant interaction between the pupil and the object of experimentation is in phase with modern theories about didactics and, in this view, CaRMetal is intended to be used by students.Amodality
The windows which show the history, the tools palette, the properties of the selected object are around the figure and never above it. These windows are not modal windows in the sense that they never hide the construction. For example, whenever the user wants to change the color of a polygon, he sees the new color immediately.Transformations
When a transformation has been defined, such that it transforms points into points, this transformation can also be applied to curves. Once again, this allows the learning subject to see the properties of the transformation at a glance, even before the transformation has actually been applied.Assignments
The workbooks can be exported as html files, with a restricted tools palette. To create an assignment, the teacher chooses the initial objects, the objects to be created by the pupil, and writes a text explaining what is to be done. Since 2010, when the pupil has finished the construction and wants to test it, random variations are tested and a quality note is attributed to the pupil.Macros
The macros can be organized in a hierarchy of folders, which make it easy to transform CaRMetal into a tool allowing to explore non-euclidean geometries.Special features
Workbooks
Since 2010, CaRMetal uses a folder system allowing one to put several figures in one folder, called "workbook". It is easy to navigate between the sheets of a workbook, to duplicate a sheet, to merge several workbooks into one. CaRMetal allows one to include picture files and JavaScript files into a figure. The file extension of a figure is zir like in C.a.R. and the file structure is a meta-description of the figure in the XML language. But a workbook is saved as a zipped folder containing all the zir figures, plus the included pictures and a preferences file.Numeric display
It is possible to convert any numerical measure of the figure into text, for display purposes. For example, if a segment called 's1' is 4.5 unit long, writing"The length of the segment is %s1%"
creates a character string which displays as The length of the segment is 4.5. This character string can be included into the figure but also set as the alias of an object or the name of an expression. Of course when one of the extremities of the segment is moved with the mouse, the text is edited in real time. This is called a dynamic text.
CaRMetal uses HotEqn and JLatexMath which are LaTeX parsers, and it is possible to write LaTeX formulae inside text objects. For example, if poly1 is a square, and one wishes to find a circle which area is the same as the square's one, one can build a text expression like this:
"The radius of the circle would be $\sqrt\simeq %sqrt%$"
This can give a text such as this:
The strength of this feature comes from the fact that it is possible to mix up dynamic texts with LaTeX formulae, getting dynamic LaTeX!
3D
CaRMetal allows the user to set some properties of the objects, like their color or the fact that they are visible or not, as conditional. Also each object can have a layer number. An important application of these features was the 2.5D mode of CaRMetal, emulating 3D geometry. Since the version 4.0 CaRMetal has a real 3D mode which comes up with a regular tetrahedron, a cube, a diamond and a regular dodecahedron. It is also possible to bind a point to the inside of a circle or polygon. This feature, inherited from C.a.R., is based on barycentric coordinates. Since the 4.1 version CaRMetal permits some turtle graphics either in 2D or in 3D.Magnetism
A point can be made magnetic with a distance and a list of objects it is attracted to whenever the point is sufficiently near one or several of these objects. For example, when a point is attracted to a finite set of points, which themselves are fixed, it can explore a finite geometry.Network
Since 2013 there is the possibility to run one CaRMetal figure as server and several as clients. Therefore, it is possible- to send one's figure to the server
- for the server, to send a correct figure to a student who lost his, or cannot create it in the requested times
- to collect data, geometrical or not, within one single figure
- to manipulate the same figure at the same time, for several people who share their work
- to send and receive JavaScript programs
- to chat within a shared figure...
JavaScript inside CaRMetal
Variables
To create a geometric object in JavaScript it suffices to click on an icon representing the object. The JavaScript instruction appears in the editor, with predefined parameters. The user has then only to edit these, and does not have to use mnemotechnics. But when a geometric object is created, the variable which called the routine is really a character string, containing the name of the object.For example,
a=Point;
creates a point, usually called P1 and the variable a contains the string "P1". This allows to refer to the point by its name. The coordinates of the point are initialized but the point can still move with the use of the mouse. It is also possible to create a point in procedural programming with
Point;
In this case, the name of the point is "A", and no variable is set to the name "A".
Input-Output
To output a variable, there are four ways:- Create an expression inside the figure ;
- Print which opens a new window and prints the content of the variable in it;
- Println which also goes to the line;
- Alert which opens an alert window, which closes as soon as the user clicked on OK.
- Input which opens an input window and waits for the click on OK
- InteractiveInput which lets the user choose an object in the figure
Strings
It is also possible to set the coordinates of a point as character strings written in the language of CaRMetal. For example, to have a point B which follows A except that B's coordinates are integer one can writea=Point;
b=Point","round;
Loops
As an example, the Sierpinski triangle can be built up as an iterated function system with this recursive script, which is rather short because of the already available graphic instructions such as MidPoint:a=Point;
b=Point;
c=Point;
m=Point,Math.random);
SetHide;
for
After the cloud of points has been built up one can make A, B and C move with the mouse : The triangle is dynamic!
JavaScript objects
CaRMetal can also use the JavaScript objects like- arrays, useful to make statistics on geometric figures;
- date object, useful to measure time;
- String and RegExp objects, which make it easy to implement L-systems;
- General JavaScript objects can be used to create new geometric objects like complex numbers, matrices etc. This object-oriented programming works much like Kig's Python scripts, but as of today no one seems to have publish anything using that.