jsxgraph: add more examples

This commit is contained in:
joyqat 2020-08-07 11:32:30 +08:00
parent d6c78bf681
commit dd57510365
1 changed files with 84 additions and 1 deletions

View File

@ -15,7 +15,7 @@ libraries:
- jsxgraph - jsxgraph
image: images/feature1/graph.png image: images/feature1/graph.png
--- ---
Use `Shift` and `Mouse Left` to drag, `Shift` and `Mouse Scroll` to zoom.
```jessiecode ```jessiecode
point(5, 5) <<id:'pt', name: 'point'>>; point(5, 5) <<id:'pt', name: 'point'>>;
grid(); grid();
@ -28,3 +28,86 @@ g = functiongraph(f);
$board.setView([-10, 10, 10, -10]); $board.setView([-10, 10, 10, -10]);
``` ```
Point A will stay inside the circle.
```jessiecode
// code adapted from https://github.com/jsxgraph/JessieCode/blob/master/examples/gaetano_g.html
O=point(0,0)<<name:'0',fixed:true>>;
U=point(1,0)<<name:'1',fixed:true>>;
I=point(0,1)<<name:'i',fixed:true>>;
x=line(O,U)<<withLabel:true,name:'x',lastArrow:true>>;
y=line(O,I)<<withLabel:true,name:'y',lastArrow:true>>;
r = 3;
c=circle(O,r);
p=point(1,1)<<color:'lime'>>;
g=<<x:1,y:1>>;
p.on('drag',function(){
if(p.X()^2+p.Y()^2>r*r) {
p.moveTo([g.x,g.y]);
};
g.x=p.X();
g.y=p.Y();
});
```
This graph shows the properties of triangle. Drag the edges of triangle to observe changes.
```jessiecode
// code adapted from https://github.com/jsxgraph/JessieCode/blob/master/examples/euler.html
cerise = <<
strokeColor: '#901B77',
fillColor: '#CA147A',
visible: true,
withLabel: true
>>;
grass = <<
strokeColor: '#009256',
fillColor: '#65B72E',
visible: true,
withLabel: true
>>;
perp = <<
strokeColor: 'black',
dash: 1,
strokeWidth: 1,
point: cerise
>>;
median = <<
strokeWidth: 1,
strokeColor: '#333333',
dash:2
>>;
// The triangle
A = point(1, 0) cerise;
B = point(-1, 0) cerise;
C = point(0.2, 1.5) cerise;
pol = polygon(A, B, C) << fillColor: '#FFFF00', borders: << strokeWidth: 2, strokeColor: '#009256' >> >>;
// The perpendiculars
H_c = perpendicularsegment(pol.borders[0], C) perp;
H_a = perpendicularsegment(pol.borders[1], A) perp;
H_b = perpendicularsegment(pol.borders[2], B) perp;
// intersection
H = intersection(H_c, H_b, 0) grass;
// Midpoints
mAB = midpoint(A, B) cerise;
mBC = midpoint(B, C) cerise;
mCA = midpoint(C, A) cerise;
ma = segment(mBC, A) median;
mb = segment(mCA, B) median;
mc = segment(mAB, C) median;
S = intersection(ma, mc, 0) grass;
grass.name = 'U';
c = circumcircle(A, B, C) << strokeColor: '#000000', dash: 3, strokeWidth: 1, center: grass >>;
euler = line(H, S) << strokeWidth: 2, strokeColor:'#901B77' >>;
$board.setView([-1.5, 2, 1.5, -1]);
```