Geometria
Interactive Geometry Software

Geometria 3.2

User's Guide


Table of Contents

1. General
Overview
Variables
Creating a Variable
Value of a Variable
Pinned Variable
Lifetime of a Variable
Rename Variable
Calculator
Expressions
Assignment
Operators
Functions
Examples
Notepad
Undo Actions
Redo Actions
Options
Font
Language
Known Limitations
Inordinate Size or Shape
Previous Versions of Geometria
Solution Language
2. Documents
Envelope
Answer
Creator's Answer
Answer Types
Solver's Answer
Create Problem
Open Problem
Save Problem
Create Solution
Open Solution
Save Solution
Close Document
Solution Log
Play Back
Solution Comments
3. Figures
Figure Gallery
Open Figure
Clone Figure
Save Figure
Remove Figure
Export Image
Export OFF File
Rename Figure
Print Figure
View
Attitude
Rotate Figure
Select Elements
View Modes
Zoom Figure
Measure
Measure Distance
Measure Angle
Measure Area
Measure Volume
Draw
Draw Segment
Draw Perpendicular
Divide Segment
Draw Midpoint
Divide Angle
Draw Bisector
Intersect Lines
Lay Distance
Lay Angle
Rename Point
Erase Elements
Transform
Scale Figure
Shear Figure
Cut Figure
Join Figures

Chapter 1. General

Overview

Geometria provides a graphic interface for creating and solving problems in solid geometry.

At any given time, the Geometria user is either a problem creator (a.k.a. teacher) or a problem solver (a.k.a. student).

Both problems and solutions are called documents. Documents are saved in files. Users engage in a Geometria process as follows:

  • The creator creates a problem, provides it with an answer and saves the problem to a file.
  • The solver opens the problem file and starts a new solution to the problem.
  • The solution consists of a number of actions. The actions are recorded in the solution log.
  • The solver answers the problem. The solver's answer is considered correct if it matches the creator's. A correct answer concludes the solution log. The solver saves the solution to a file.
  • The solution can be played back by opening the file and following the solver's actions.

Note that Geometria performs no semantic analysis of the problem in order to determine if the creator's answer is actually correct. The answer may be incorrect or even make no sense at all. The problem may make no sense either. The problem might ask:

What is the highest point in Monkey's Brow County, KY?

and be answered as:

Point Z in figure MyPyramid.

If that is what the creator considers a correct answer to the problem, it's fine with Geometria. However, it is unlikely that his problem will get much attention from solvers.

Every document contains the problem text, an envelope, a number of figures and a number of notepad records. Figures are limited to convex polyhedra. Figures can be measured, drawn upon, transformed, rotated, viewed transparent or opaque.

Measurements and drawings can only be made on the surface of a figure. Actions in the figure's interior are possible by cutting the figure with a suitable plane.

Labels and variables provide a convenient abstraction over numeric coordinates and measurements. Variables are used in calculations and referenced in drawings. Labels and variables are also used to answer the problem.

The answer is not necessarily numeric. In fact, some of the most challenging problems cannot be answered with a number. The problem may ask for a certain point, segment, path or plane to be constructed. For example:

Find a plane that is parallel to the diagonal of the cube and cuts off the cube twice the volume of the pyramid.

See also:

Variables

Creating a Variable

A variable is created as a result of a measurement or a calculation. A newly created variable has a name and a definition. For instance, the variable myDistance in the example below is defined as the distance between points P and W in figure MyCube:

myDistance = |PW| : MyCube

In another example, variable myArea is a result of a calculation upon previously defined variables myVolume and myDistance:

myArea = 2 * myVolume / myDistance

Newly created variables are automatically recorded, along with their definitions, on the notepad.

Variable names can contain alphanumeric characters alone. Special and accented characters are not allowed. A variable name cannot contain spaces.

Variable names are case sensitive. Thus, myArea and MyArea will reference two distinct variables.

PI is reserved for the corresponding constant and cannot be used for newly created variables. However, it can be used in calculations.

Value of a Variable

Each variable has a numeric value. However, in most cases, this value remains transparent to the user. The user can create and solve Geometria problems without ever knowing the underlying values of the variables he or she has defined. To see the numerical value of a variable, type the variable in the calculator and click the Evaluate button. Due to roundup errors, the numeric values may slightly vary over the process of creating or solving the problem.

The value of a variable may change as a result of certain actions upon figures. If, in the example above, MyCube is scaled by the factor of 3, the value of myDistance will be implicitly multiplied by 3. The values of any variables that depend on myDistance, such as myArea, will be automatically updated as well.

However, the numerical value of the answer will be unaffected by actions upon figures. If, in the example above, the problem creator enters myDistance as the problem answer before scaling the figure, the value of the answer will not change, even though myDistance will carry a new value in all subsequent calculations. This note applies to all types of answer.

Therefore, the problem creator should consider (re)entering the answer before making the problem available to solvers.

Pinned Variable

After certain actions, the definition of a variable may become obsolete. For example, if point P or point W is erased, the definition of the variable myDistance above will become obsolete. Same if figure MyCube is removed. Such a variable is called pinned.

A pinned variable is no longer dependent upon its original definition and its value will no longer be updated. For example, erasing point P in figure MyCube will pin variable myDistance. If MyCube is subsequently scaled as described above, the value of myDistance will nevertheless stay the same.

If the action that pinned a variable is undone, the definition of the variable is restored and the variable becomes again targeted for updates.

Lifetime of a Variable

Once a variable is defined, it can be used in calculations and referenced in actions, such as measuring, drawing and transforming figures. A variable can also be used to answer a problem. A pinned variable can still be used in calculations and references.

A variable exists as long as it is recorded on the notepad. Clearing the notepad is the only way to remove a variable. Use caution since this action cannot be undone.

When the document, such as a problem or a solution, is saved, all the variables recorded on the notepad are saved, too.

See also:

Rename Variable

To rename a variable, select Rename Variable from the Edit menu. Alternatively, select the notepad record that defines the variable, right click and select Rename Variable from the popup menu.

A dialog will pop up. Select the variable you wish to rename from the drop-down list, enter the new name for the variable and click OK. The new name must be a valid variable name.

Click on the record that defines the variable on the notepad ahead of time, to have it automatically selected in the input box.

Renaming a variable will result in some of the notepad records being updated accordingly.

This action can be undone.

See also:

Calculator

Expressions

Calculations are performed upon valid expressions. Expressions can contain numbers, variables, the constant PI, operators, functions and parentheses.

Assignment

The calculator operates in the context of the currently open document.

To calculate an expression myExpression and assign the result to a new variable myVariable, type in:

myVariable = myExpression

and click Evaluate. The variable name must be unique in the context of the currently open document. A new record will be added to the notepad. The newly created variable can be used in subsequent calculations and references.

If no document is open, the numeric result of the calculation will be displayed. No new variable will be created.

Operators

The following operators are supported:

  • + (add)
  • - (negate, subtract)
  • * (multiply)
  • / (divide)
  • ^ (power operator)

Functions

The following functions are supported:

  • sqrt (square root)
  • sin
  • cos
  • tan
  • asin
  • acos
  • atan

Arguments to functions are taken into parentheses.

Examples

Calculate the side of a cube whose volume is myVolume:

mySide = myVolume ^ (1 / 3)

Calculate the side adjacent to angle myAngle in a right triangle whose hypothenuse is myHypothenuse:

mySide = myHypothenuse * cos(myAngle)

See also:

Notepad

Each time a new variable is created as a result of a measurement or a calculation, a record is added to the notepad automatically. Each record consists of a unique variable name and, possibly, a definition. Measurement records may also contain the name of the figure where the measurement was taken. For example, the following record:

myDistance = |AB| : MyCube

is the result of measuring the distance between points A and B in a figure named MyCube. The distance has been assigned the variable myDistance. The record:

myAngle = <PLX

is a result of measuring an angle. The figure name is not shown since the document currently contains a single figure. The record:

myVolume = volume : Figure1

is the result of measuring the volume of a figure named Figure1. The following record was added after a calculation:

h = 2 * myVolume / myArea

If a variable is pinned, its definition no longer shows on the notepad. For example, if point X is erased, the variable myAngle will be stripped of its definition and the second example above will read:

myAngle

Notepad records are owned by the current document, whether it is a problem or a solution. When the document is saved to a file, the records will likewise be saved to that file.

If the current document is closed, the notepad will be cleared of records. If another document is opened, its notepad records will be displayed instead.

To erase all records from the notepad, select Clear Notepad from the Edit menu. Use caution since this action cannot be undone.

To deselect the notepad records, right click and choose Clear Selection from the popup menu.

See also:

Undo Actions

To undo the last action performed on a figure or a document, select Undo from the Edit menu or click the button on the tool bar. In a solution, the action will be also erased from the log. The actions are undone in the reverse order as they have been performed.

To view a short description of the action that would be undone, pause the mouse over the button.

Any undone action can be redone.

Some of the actions cannot be undone. A warning is displayed when such an action is about to take place.

See also:

Redo Actions

To redo the last undone action on a figure or a document, select Redo from the Edit menu or click the button on the tool bar. In a solution, the action will be added to the log. The actions are redone in the reverse order as they have been undone.

To view a short description of the action that would be redone, pause the mouse over the button.

See also:

Options

Font

To make the characters larger or smaller, select Font from the Options menu, then select the desired font size.

Language

To switch to a different language, select Language from the Options menu, then select the desired language.

Known Limitations

Inordinate Size or Shape

The application may behave erratically if the figures contain excessively sized or oddly shaped elements. Here are some guidelines for keeping the figures safe:

  • Avoid both very large (over 100) and very small (under 0.01) scaling factors.
  • When creating a prism or a pyramid using the figure gallery, keep the number of sides within reasonable limit (under 100). By design, Geometria cannot handle any solids but convex polyhedra. However opaque prisms and pyramids with a large number of sides do look like cylinders and cones respectively. Unfortunately, actions upon such figures may be slow and unimpressive. The application may become unstable and fail to respond to user actions.

Previous Versions of Geometria

Problems, solutions and figures created with Geometria versions prior to 3.0 are no longer supported. However, we plan to have all future versions of Geometria backward compatible with 3.0.

Solution Language

Solution files created with Geometria versions prior to 3.1 must be opened using the same language in which they were saved.

Chapter 2. Documents

Envelope

The envelope of a document, such as a problem or a solution, consists of the name, email address and web page of the author and some comments. All fields are optional.

To edit the envelope, select Envelope from the Edit menu or click the button on the tool bar. A dialog will pop up. Fill in the fields and click OK.

Envelope changes can be undone.

See also:

Answer

A problem is not ready to be solved until the creator supplies it with an answer. The solver's answer is considered correct if it matches the creator's (see Overview for details).

Creator's Answer

To define the answer to the currently open problem, select Answer from the Edit menu. Select the answer type:

  • Number
  • Point Set
  • Segment Set
  • Fixed Plane
  • Condition Plane, or
  • Multiple choice

Open the Value pane.

Answer Types

Number

Enter a valid expression. Click OK. To minimize the input, have a notepad record selected ahead of time.

Point Set

The term point set refers to a single point, end points of a segment (2 points) or a path (2 or more points).

Enter one or more labels separated by commas. Click OK. To minimize the input, have the points selected ahead of time in the selected figure.

Segment Set

The segments must satisfy a certain condition. Currently, the following conditions are supported:

Fixed Plane

Reference the plane by 3 comma-separated labels. Click OK. To minimize the input, have some reference elements, such as 3 points, a point and a segment, or a face selected ahead of time in the selected figure.

Condition Plane

Unlike a fixed plane, that is a plane occupying a fixed position in space, a condition plane must satisfy a number of conditions. Generally, a condition plane is not unique.

There are three groups of conditions. Select a condition in at least one of the groups. Click OK.

The first group contains the following conditions:

  • Plane contains a given point
  • Plane contains a given line
  • Plane does not contain a given point
  • Plane does not contain a given line
  • Plane contains no vertex of the selected figure
  • Plane contains no edge of the selected figure
  • Plane is parallel to a given line
  • Plane is parallel to a given plane
  • Plane is perpendicular to a given line
  • Plane is perpendicular to a given plane

Reference the given point, line or plane, as required, by comma-separated labels. To minimize the input, have the elements selected ahead of time in the selected figure.

The second group consists of the following condition:

  • Plane divides the volume of selected figure in given ratio

Enter a valid expression. The expression will be interpreted as the numerator of a ratio whose denominator is 1. For example, a + 1 means that the volume should be cut in ratio a + 1 : 1. Select a notepad record ahead of time to have it copied automatically to the input box.

The third group refers to the way the plane cuts the figure. The section may be shaped like an:

  • Isoscelles triangle
  • Right triangle
  • Equilateral (regular) triangle
  • Parallelogram
  • Rhombus
  • Rectangle
  • Square

The answer definition can be undone.

Note that, although, as a rule, the problem creator enters the answer symbolically, Geometria stores all answers numerically. Once entered, the answer will be unaffected by all subsequent actions upon figures. Therefore it is a good idea to (re)enter the answer as a last action before saving the problem and making it available to solvers.

Multiple choice

Enter an option. Click the Add button to add another option. Click the Remove button to remove an option. Each option must be unique. Select the correct option. Click OK.

Solver's Answer

The solver concludes the solution by providing a correct answer. Note, again, that the solver's answer is considered correct if it matches the creator's.

Have the solution opened. Select Answer from the Edit menu. Enter a valid expression or comma-separated labels, as appropriate. To minimize the input, have a notepad record and/or some elements, such as points, segments or a face, selected ahead of time in the selected figure. Click OK.

An evaluation of the answer (corect or incorrect) will pop up.

If the answer is correct, it will conclude the solution log. No more actions will be possible unless the answer is undone. You may want to save the solution to a file. A saved solution can later be played back.

See also:

Create Problem

Create a problem by either selecting Create Document->Problem from the Document menu or by clicking the button on the tool bar.

If there are unsaved modifications in the current document, a dialog will be displayed asking if the current document should be saved before it is closed.

Click Yes to save the current document.

Click No to close the current document without saving. Note that all unsaved modifications to the current document will be lost.

Click Cancel to dismiss the dialog with no action taken.

If concluded, this action cannot be undone.

See also:

Open Problem

Open a problem from a file by either selecting Open Document->Problem from the Document menu or by clicking the button on the tool bar. Alternatively, drag the file into the Geometria window.

If there are unsaved modifications in the current document, whether it is a problem or a solution, a dialog will be displayed asking if the current document should be saved before it is closed.

Click Yes to save the current document.

Click No to close the current document without saving. Note that all unsaved modifications to the current document will be lost.

Click Cancel to dismiss the dialog with no action taken.

If concluded, this action cannot be undone.

See also:

Save Problem

Save the currently open problem to a file by either selecting Save Document from the Document menu or by clicking the button on the tool bar.

To save the problem under a different name, select Save Document As from the Document menu.

This action cannot be undone.

If this is a final revision of the problem, you may consider erasing all working calculations and measurements from the notepad. The records will not show on the notepad to the problem's solver, however, unless cleared, they will still be present in the file.

Beware, though, that the action of clearing the notepad cannot be undone.

A final revision of the problem should also be provided with an answer.

See also:

Create Solution

Create solution to the currently opened problem by either selecting Create Document->Solution from the Document menu or by clicking the button on the tool bar.

If the problem you wish to solve is not opened, open it first.

If there are unsaved modifications in the current problem, a dialog will be displayed asking if the current problem should be saved before it is closed.

Click Yes to save the current problem. Note that you will be solving the version of the problem you just saved.

Click No to close the current problem without saving. Note that all unsaved modifications to the current problem will be lost and you will be solving the last saved version of the problem.

Click Cancel to dismiss the dialog with no action taken.

If concluded, this action cannot be undone.

See also:

Open Solution

Open a solution from a file by either selecting Open Document->Solution from the Document menu or by clicking the button on the tool bar. Alternatively, drag the file into the Geometria window.

If there are unsaved modifications in the current document, whether it is a solution or a problem, a dialog will be displayed asking if the current document should be saved before it is closed.

Click Yes to save the current document.

Click No to close the current document without saving. Note that all unsaved modifications to the current document will be lost.

Click Cancel to dismiss the dialog with no action taken.

If concluded, this action cannot be undone.

See also:

Save Solution

Save the currently open solution to a file by either selecting Save Document from the Document menu or by clicking the button on the tool bar.

To save the solution under a different name, select Save Document As from the Document menu.

This action cannot be undone.

If this is a final revision of the solution, do not forget to conclude it with a correct answer.

See also:

Close Document

Close the currently opened document, whether it is a problem or a solution, by either selecting Close Document from the Document menu or by clicking the button on the tool bar.

If there are unsaved modifications in the current document, a dialog will be displayed asking if the current document should be saved before it is closed.

Click Yes to save the current document.

Click No to close the current document without saving. Note that all unsaved modifications to the current document will be lost.

Click Cancel to dismiss the dialog with no action taken.

If concluded, this action cannot be undone.

Notepad records and figures belong to the currently open document. When the document is closed, the notepad is cleared and the figures closed.

See also:

Solution Log

Play Back

As the solver progresses through the solution, his or her actions are recorded in the solution log. A saved solution can later be opened and played back.

To start playing back the solution, click the button.

To play back the next step, click the button.

To jump forward or backward, select an arbitrary record in the log.

To erase all records from the log, click the button. Use caution since this action cannot be undone.

To erase all records following the selected record, click the button. Use caution since this action cannot be undone.

To stop playing back the solution, click the button.

While the solution is being played back, it is freezed. To modify the solution, stop the play back first.

Solution Comments

To comment on a solution step, right click on the corresponding record and select Comment from the popup menu. A dialog will be displayed. Type in your comments and click OK.

To view the comments, pause the mouse over the corresponding record. Commented records are highlighted in the solution log.

See also:

Chapter 3. Figures

Figure Gallery

The figure gallery contains regular prisms, regular pyramids and the five platonic solids, namely, the tetrahedron, cube, octahedron, dodecahedron and icosahedron.

To create a prism, select an item from the Figure->Gallery->Prism menu.

To create a pyramid, select an item from the Figure->Gallery->Pyramid menu.

To create a platonic solid, select an item from the Figure->Gallery->Platonic Solid menu.

The figure will be added to the currently opened document. If no document is opened, you may want to create a problem first.

This action can be undone.

See also:

Open Figure

Open a figure from a file by either selecting Open Figure from the Figure menu or by clicking the button on the tool bar. Alternatively, drag the file into the Geometria window.

The figure will be added to the currently opened document. If no document is opened, you may want to create a problem first.

A gallery of figures is available to choose from, including prisms, pyramids and platonic solids.

This action can be undone.

See also:

Clone Figure

Clone a figure by either selecting Clone Figure from the Figure menu or by clicking the button on the tool bar.

This action can be undone.

See also:

Save Figure

Save a figure to a file by either selecting Save Figure from the Figure menu or by clicking the button on the tool bar.

This action cannot be undone.

See also:

Remove Figure

Remove a figure from the current document by either selecting Remove Figure from the Figure menu or by clicking the button on the tool bar.

Removing a figure that has been measured will result in some of the variables being pinned.

This action can be undone.

The solver cannot remove a figure that is part of the problem. However, any figures that have been created in the process of solving the problem may be removed.

See also:

Export Image

To export a figure to an image file, select Export Image from the Figure menu. A dialog will pop up. Choose an image file type, enter a file name and click Save.

This action cannot be undone.

See also:

Export OFF File

OFF is a popular file format for polyhedra. It is used by Geomview (http://www.geomview.org) and other geometry software. To export a figure to a file in OFF format, select Export OFF File from the Figure menu. A dialog will pop up. Choose an file name and click Save.

This action cannot be undone.

See also:

Rename Figure

To rename a figure, select Rename Figure from the Figure menu.

Some special characters and spaces are not allowed in figure names.

This action can be undone.

The solver cannot rename a figure that is part of the problem. However, any figures that have been created in the process of solving the problem may be renamed.

See also:

Print Figure

Print a figure by either selecting Print Figure from the Figure menu or by clicking the button on the tool bar.

This action cannot be undone.

See also:

View

Attitude

Geometria employs a fixed right-hand reference system. The Z axis of the reference system is parallel to the vertical edge of the screen. No knowledge of the reference system is necessary to manipulate figures, create and solve problems.

At any given time, the figure has a certain attitude. The attitude can be described in terms of angles the figure forms with the reference system. When a figure is created, it has the default attitude. The figure's attitude changes as the figure is rotated.

To revert a figure to the initial attitude, select Initial Attitude from the View menu or right click and select Initial Attitude from the popup menu.

When a figure is saved, its current attitude becomes its initial attitude. To revert to the attitude the figure had when it was created, before any subsequent rotations, select Default Attitude from the View menu.

See also:

Rotate Figure

Toggle the selector off and stroke a figure with the mouse to rotate the figure. The rotation speed and angle will depend on the stroke.

To pin a rotating figure, click on it.

See also:

Select Elements

Toggle Selector

Right click on a figure and select Toggle Selector from the popup menu. Alternatively, click the selector button on the tool bar.

When the selector is on (white selector icon), elements can be selected by clicking on them. When the selector is off (dimmed selector icon), dragging the mouse will rotate the figure.

The selector is off by default.

Select Elements One By One

Click an element, such as a point, a segment or a face, to select (highlight) it. To select more than one element, hold down the Ctrl key. Faces can only be selected in non-transparent view mode.

Click on an empty space inside a figure to clear the selection. Hold down the Ctrl key and click on a selected element to clear that element alone.

Select All Elements

To select all points and segments in a figure (with the exception of vertices and edges), select Select All from the Edit menu. This action offers a convenient way to erase all elements at once.

See also:

View Modes

Toggle Transparency

To toggle the view mode of a figure between transparent and opaque, select Toggle Transparency from the View menu. Alternatively, click the button on the tool bar.

In a transparent figure, visible segments are solid, whereas invisible segments are dashed. Any point or segment can be selected, whether it is visible or not. Faces can only be selected in an opaque figure.

In an opaque figure, invisible segments and points are not shown. Points, segments and faces can be selected only if they are visible.

Set Color

To change the color of an opaque figure, select Set Color from the View menu or click the color selector button on the tool bar. Select a color in the popup dialog and click OK.

Toggle Labels

To show or hide point labels, select Toggle Labels from the View menu. Alternatively, click the button on the tool bar. Labels will only show in transparent figures.

See also:

Zoom Figure

To zoom in on a figure, select Zoom In from the View menu or click the button on the tool bar.

To zoom out, select Zoom Out from the View menu or click the button on the tool bar.

To resize a figure so it fits into the window, select Fit To View from the View menu or click the button on the tool bar.

See also:

Measure

Measure Distance

To measure the distance between two points, proceed, alternatively, as follows:

  • Select Distance from the Measure menu, or
  • click the button on the tool bar, or
  • select both points or the segment that joins them, right click and select Distance from the popup menu.

The two points must belong to the same face.

A dialog will pop up. Fill in, if necessary, the points, assign a unique variable and click OK. A record will appear on the notepad, as below:

myDistance = |AB| : MyCube

where myDistance is the variable assigned to the distance between points A and B in figure MyCube. If MyCube is currently the only figure, the record will read:

myDistance = |AB|

This action can be undone.

See also:

Measure Angle

To measure an angle, proceed, alternatively, as follows:

  • Select Angle from the Measure menu, or
  • click the button on the tool bar, or
  • select two segments that make the angle in question, right click and select Angle from the popup menu.

The segments that make the angle must belong to the same face and not be collinear.

A dialog will pop up. Fill in, if necessary, the points, assign a unique variable and click OK. A record will appear on the notepad, as below:

myAngle = <ABC : MyPyramid

where myAngle is the variable assigned to the angle between AB and AC in figure MyPyramid. If MyPyramid is currently the only figure, the record will read:

myAngle = <ABC

All angles are expressed in radians.

This action can be undone.

See also:

Measure Area

To measure the area of a face proceed, alternatively, as follows:

  • Select Area from the Measure menu, or
  • click the button on the tool bar, or
  • select the face, right click and select Area from the popup menu.

A dialog will pop up. Select, if necessary, the face from the list, assign a unique variable and click OK. A record will appear on the notepad, as below:

myArea = area[ABC] : MyCube

where myArea is the variable assigned to the area of the face that contains vertices A, B, C in figure MyCube. If MyCube is currently the only figure, the record will read:

myArea = area[ABC]

This action can be undone.

See also:

Measure Volume

To measure the volume of a figure proceed, alternatively, as follows:

  • Select Volume from the Measure menu, or
  • click the button on the tool bar.

A dialog will pop up. Assign a unique variable and click OK. A record will appear on the notepad, as below:

myVolume = volume : MyCube

where myVolume is the variable assigned to the volume of figure MyCube. If MyCube is currently the only figure, the record will read:

myVolume = volume

This action can be undone.

See also:

Draw

Draw Segment

To join two points with a segment, proceed, alternatively, as follows:

  • Select Draw Segment from the Draw menu, or
  • click the button on the tool bar, or
  • select the two points, right click and select Draw Segment from the popup menu.

The two points must belong to the same face.

If a dialog pops up, fill in the points and click OK.

This action can be undone.

See also:

Draw Perpendicular

To draw a perpendicular through a point to a segment, proceed, alternatively, as follows:

  • Select Draw Perpendicular from the Draw menu, or
  • click the button on the tool bar, or
  • select the point and the segment, right click and select Draw Perpendicular from the popup menu.

The point and the segment must belong to the same face. The point may or may not belong to the segment.

If a dialog pops up, fill in the points and click OK.

If the point and the segment belong to two different faces at the same time, a second dialog may pop up. Select a face from the list and click OK.

This action can be undone.

See also:

Divide Segment

To divide a segment in a given ratio, proceed, alternatively, as follows:

  • Select Divide Segment from the Draw menu, or
  • click the button on the tool bar, or
  • select the segment, right click and select Divide Segment from the popup menu.

A dialog will pop up. Fill in, if necessary, the points and valid expressions for the numerator and denominator of the ratio. Click OK.

The ratio is defined as AX : XB, where X is the division point, AB the segment. For example, if the ratio is 1 : 2, X will be twice closer to A than to B. If the ratio is 3 : 1, X will be three times closer to B than to A.

The midpoint divides the segment in ratio 1 : 1 and therefore can be drawn as shown above. However, a convenience Draw Midpoint action offers a shortcut.

This action can be undone.

See also:

Draw Midpoint

To draw the midpoint of a segment, proceed, alternatively, as follows:

  • Select Draw Midpoint from the Draw menu, or
  • select the segment, right click and select Draw Midpoint from the popup menu.

A dialog may pop up. Fill in, if necessary, the points. Click OK.

Note that drawing the midpoint is equivalent to dividing the segment in ratio 1 : 1.

This action can be undone.

See also:

Divide Angle

To divide an angle in a given ratio, proceed, alternatively, as follows:

  • Select Divide Angle from the Draw menu, or
  • click the button on the tool bar, or
  • select two segments that make the angle, right click and select Divide Angle from the popup menu.

The segments that make the angle must belong to the same face and not be collinear.

A dialog will pop up. Fill in, if necessary, the points and valid expressions for the numerator and denominator of the ratio. Click OK.

The ratio is defined as <AOX : <XOB, where OX is the division segment, <AOB the angle. For example, if the ratio is 1 : 2, OX will make with OB a twice greater angle than with OA. If the ratio is 3 : 1, OX will make with OA three times greater an angle than with OB.

The bisector divides the angle in ratio 1 : 1, therefore can be drawn as shown above. However, the convenience Draw Bisector action offers a shortcut.

This action can be undone.

See also:

Draw Bisector

To draw the bisector of an angle, proceed, alternatively, as follows:

  • Select Draw Bisector from the Draw menu, or
  • select two segments that make the angle, right click and select Draw Bisector from the popup menu.

The segments that make the angle must belong to the same face and not be collinear.

A dialog may pop up. Fill in, if necessary, the points. Click OK.

Note that drawing the bisector is equivalent to dividing the angle in ratio 1 : 1.

This action can be undone.

See also:

Intersect Lines

To draw the intersection point of the lines containing two given segments, proceed, alternatively, as follows:

  • Select Intersect Lines from the Draw menu, or
  • click the button on the tool bar, or
  • select the segments, right click and select Intersect Lines from the popup menu.

Both segments, as well as the intersection point of their lines, must belong to the same face.

A dialog may pop up. Fill in, if necessary, the points. Click OK.

This action can be undone.

See also:

Lay Distance

To draw a point on a given segment at a given distance from a given point, proceed, alternatively, as follows:

  • Select Lay Distance from the Draw menu, or
  • click the button on the tool bar, or
  • select the point and the segment, right click and select Lay Distance from the popup menu.

The point and the segment must belong to the same face. The point may or may not belong to the segment.

A dialog will pop up. Fill in, if necessary, the points and a valid expression for the distance. Click OK. Select a notepad record ahead of time to have it copied automatically to the distance input box.

This action may result in the construction of one or two distinct points.

This action can be undone.

See also:

Lay Angle

To draw a segment from the end point of another segment so that the two segments make a given angle, proceed, alternatively, as follows:

  • Select Lay Angle from the Draw menu, or
  • click the button on the tool bar, or
  • select the segment and its end point, right click and select Lay Angle from the popup menu.

A dialog will pop up. Fill in, if necessary, the points and a valid expression for the angle. Click OK. Select a notepad record ahead of time to have it copied automatically to the angle input box.

The angle must be greater than 0 and less than 180 degrees and be entered in radians, as opposed to degrees. For example, to lay an angle of 60 degrees, enter PI/3.

If the segment belongs to two different faces at the same time, a second dialog may pop up. Select a face from the list and click OK.

This action may result in the construction of one or two distinct segments.

This action can be undone.

See also:

Rename Point

The problem creator can rename a point in a figure by selecting Rename Point from the Draw menu.

A dialog will pop up. Enter the old and the new labels for the point in question and click OK. A valid label consists of a capital letter, which may be followed by one or more digits.

Select a point ahead of time to have it automatically copied into the input box.

Renaming a point may result in some of the notepad records being updated accordingly.

This action can be undone.

See also:

Erase Elements

Erase Segment

To erase a segment or its part, select Erase Segment from the Draw menu. The segment cannot belong to an edge.

If a dialog pops up, fill in the points and click OK.

Note that a whole segment can be more conveniently erased by selecting it and performing the Erase Selection action.

Erasing a segment that has been referenced in measurements will result in some of the variables being pinned.

This action can be undone.

Erase Selection

To erase one or more elements, such as points and/or segments, select them and proceed, alternatively, as follows:

  • Select Erase Selection from the Draw menu, or
  • click the button on the tool bar.

Vertices and segments that belong to edges will not be erased.

To erase all points and segments in a figure (with the exception of vertices and edges), select them all first.

To erase only a part of a drawn segment, use the Erase Segment action.

Erasing elements that have been referenced in measurements will result in some of the variables being pinned.

This action can be undone.

See also:

Transform

Scale Figure

To scale a figure along a given segment by a given positive factor, proceed, alternatively, as follows:

  • Select Scale Figure from the Transform menu, or
  • click the button on the tool bar, or
  • select the segment or two points on it, right click and select Scale Figure from the popup menu.

A dialog will pop up. Fill in, if necessary, the points and a valid expression for the factor. Click OK. Select a notepad record ahead of time to have it automatically copied to the factor input box.

As a result of scaling, the previously measured distances, angles, areas and volumes will be recalculated and the assigned variables updated. See Variables for more details.

This action can be undone.

The solver cannot scale a figure that is part of the problem. However, the figures that have been created in the process of solving the problem may be scaled.

See also:

Shear Figure

Shearing refers to an affine transformation where planes parallel to a fixed reference plane slide along a fixed line contained in the reference plane. The term affine implies that the transformation preserves the collinearity of points.

If XY is the fixed line in the reference plane, the shearing transformation is uniquely identified by points X, Y and the image of any point Z such that XZ is perpendicular to the reference plane.

To shear a figure, proceed, alternatively, as follows:

  • Select Shear Figure from the Transform menu, or
  • click the button on the tool bar, or
  • select the reference segment XY and the image of point Z, right click and select Shear Figure from the popup menu.

A dialog will pop up. Fill in, if necessary, the reference points (X, Y at the bottom and the image of point Z at the top). Click OK.

As a result of shearing, the previously measured distances and angles will be recalculated and the assigned variables updated. See Variables for more details.

The solver cannot shear a figure that is part of the problem. However, the figures that have been created in the process of solving the problem may be sheared.

This action can be undone.

See also:

Cut Figure

To cut a figure with a plane, proceed, alternatively, as follows:

  • Select Cut Figure from the Transform menu, or
  • click the button on the tool bar, or
  • select the elements that reference the plane, such as 3 points, a point and a segment or two segments, right click and select Cut Figure from the popup menu.

The selected elements must uniquely identify a plane. The plane must pass through the figure's interior.

If a dialog pops up, fill in the points and click OK.

The two resulting halves will be displayed in separate views. The original figure will be kept intact in its own view.

This action can be undone.

See also:

Join Figures

Two figures can be joined by either selecting Join Figures from the Transform menu or by clicking the button on the tool bar.

A dialog will pop up. Select the figures to join and click OK. A figure can be joined with a copy of itself. Therefore the same figure can be selected in both lists.

If the figures can be joined in one way only, a new view will appear with the combined figure in it. The two original figures will be kept intact in their own views.

If, however, the figures can be joined in more than one way, another dialog will be displayed asking if the figures should be joined in any of the possible ways. Click No to proceed with a more accurate definition of the joining elements.

Click Yes to have the figures joined in one of the possible ways. A preview will be displayed along with another dialog asking if the result should be kept. Click Yes to keep the result and conclude the action. Click No to get a preview of the next possible way of joining the figures.

It is recommended that, prior to joining the figures, the corresponding points and/or faces be selected. That will reduce to a minimum the subsequent dialog input. Note that faces can only be selected in the opaque view mode.

The joining faces must have the same shape, that is have equal angles and proportional sides at corresponding vertices. The joining faces do not have to have the same size. If need be, one of the figures will be automatically scaled to fit the other.

The action will be cancelled if the joint figure is not convex.

This action can be undone.

See also: