Class Circumcenter
Extends
JXG.Point.
Constructs the midpoint of a Circumcircle. Like the circumcircle the circumcenter
is constructed by providing three points.
Defined in: Composition.js.
Constructor Attributes | Constructor Name and Description |
---|---|
Circumcenter(p1,p2,p3)
A circumcenter is given by three points which are all lying on the circle with the
constructed circumcenter as the midpoint.
|
- Fields borrowed from class JXG.Point:
- face, fixed, showInfobox, size, style
- Fields borrowed from class JXG.GeometryElement:
- ancestors, board, childElements, dash, descendants, draft, fillColor, fillOpacity, hasLabel, highlightFillColor, highlightFillOpacity, highlightStrokeColor, highlightStrokeOpacity, highlightStrokeWidth, id, isReal, layer, name, needsRegularUpdate, needsUpdate, notExistingParents, numTraces, quadraticform, shadow, stdform, strokeColor, strokeOpacity, strokeWidth, symbolic, trace, traces, transformations, visible, visProp
- Methods borrowed from class JXG.Point:
- addConstraint, addTransform, cloneToBackground, Dist, makeGlider, moveAlong, moveTo, normalizeFace, remove, setPosition, setPositionByTransform, setPositionDirectly, update, updateTransform, visit, X, Y, Z
- Methods borrowed from class JXG.GeometryElement:
- addChild, addLabelToElement, animate, clearTrace, hideElement, highlight, labelColor, noHighlight, setArrow, setProperty, showElement
Class Detail
Circumcenter(p1,p2,p3)
A circumcenter is given by three points which are all lying on the circle with the
constructed circumcenter as the midpoint.
var p1 = board.create('point', [0.0, 2.0]); var p2 = board.create('point', [2.0, 1.0]); var p3 = board.create('point', [3.0, 3.0]); var cc1 = board.create('circumcenter', [p1, p2, p3]);
- Parameters:
- {JXG.Point_JXG.Point_JXG.Point} p1,p2,p3
- The constructed point is the midpoint of the circle determined by p1, p2, and p3.
- Throws:
- {Exception}
- If the element cannot be constructed with the given parent objects an exception is thrown.