Share JSXGraph: example "Conic section: generic through 5 points"

JSXGraph
Share JSXGraph: example "Conic section: generic through 5 points"
This website is a beta version. The official release will be in **2023**.

Conic section: generic through 5 points

// Define the id of your board in BOARDID

const board = JXG.JSXGraph.initBoard(BOARDID, {
    boundingbox: [-2, 3, 4, -3],
    keepaspectratio: true
});

var A = board.create('point', [0.55, 0]);
var B = board.create('point', [1, 1]);
var C = board.create('point', [2, -1]);
var D = board.create('point', [2, 2]);
var E = board.create('point', [0.3, -2]);
var con = board.create('conic', [A, B, C, D, E]);