JavaScript must be enabled in order for you to use JSXGraph and JSXGraph reference. However, it seems JavaScript is either disabled or not supported by your browser.

Class Index | File Index

Elements
Classes

Class Bisectorlines

JXG.Composition
      ↳ Bisectorlines

Bisector lines are similar to Bisector but take two lines as parent elements. The resulting element is a composition of two lines.

Defined in: composition.js.
Extends JXG.Composition.

Class Summary
Constructor Attributes Constructor Name and Description
 
Bisectorlines(l1,l2)
Field Summary
Field Attributes Field Name and Description
 
Attributes for first line.
 
Attributes for second line.
Methods borrowed from class JXG.Composition:
add, fullUpdate, highlight, noHighlight, prepareUpdate, remove, setAttribute, setParents, update, updateRenderer
Class Detail
Bisectorlines(l1,l2)
Parameters:
{JXG.Line_JXG.Line} l1,l2
The four angles described by the lines l1 and l2 will each be divided into two equal angles.


Throws:
{Error}
If the element cannot be constructed with the given parent objects an exception is thrown.
Examples:
var p1 = board.create('point', [6.0, 4.0]);
var p2 = board.create('point', [3.0, 2.0]);
var p3 = board.create('point', [1.0, 7.0]);
var p4 = board.create('point', [3.0, 0.0]);
var l1 = board.create('line', [p1, p2]);
var l2 = board.create('line', [p3, p4]);

var bi1 = board.create('bisectorlines', [l1, l2]);

				
                
Field Detail
{Line} line1
Attributes for first line.
Defined in: options.js.

{Line} line2
Attributes for second line.
Defined in: options.js.

Documentation generated by JsDoc Toolkit 2.4.0 on Sun Apr 02 2023 16:59:53 GMT-0000 (UTC)