<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://jsxgraph.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nicolas.adenis.lamarre</id>
	<title>JSXGraph Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://jsxgraph.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nicolas.adenis.lamarre"/>
	<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Special:Contributions/Nicolas.adenis.lamarre"/>
	<updated>2026-04-06T03:28:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Quick_start_on_Ubuntu&amp;diff=6405</id>
		<title>Quick start on Ubuntu</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Quick_start_on_Ubuntu&amp;diff=6405"/>
		<updated>2015-07-01T12:37:05Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: Created page with &amp;quot;It is recommended to clone the git repository on github and pull requests to the main project.  This quick start guide shows how to get sources, compile them quickly on Ubuntu.  ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It is recommended to clone the git repository on github and pull requests to the main project.&lt;br /&gt;
&lt;br /&gt;
This quick start guide shows how to get sources, compile them quickly on Ubuntu.&lt;br /&gt;
&lt;br /&gt;
=Prerequisites=&lt;br /&gt;
==Ubuntu packages==&lt;br /&gt;
 sudo apt-get install npm pkg-config libcairo2-dev nodejs-legacy&lt;br /&gt;
&lt;br /&gt;
==Get sources==&lt;br /&gt;
 git clone https://github.com/jsxgraph/jsxgraph.git&lt;br /&gt;
 cd jsxgraph&lt;br /&gt;
&lt;br /&gt;
==Npm prerequisites==&lt;br /&gt;
 npm install&lt;br /&gt;
&lt;br /&gt;
=Compile=&lt;br /&gt;
 make core&lt;br /&gt;
or&lt;br /&gt;
 make core-min&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Main_Page&amp;diff=6404</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Main_Page&amp;diff=6404"/>
		<updated>2015-07-01T08:39:07Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: /* Development links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== JSXGraph Wiki ==&lt;br /&gt;
Welcome to the JSXGraph Wiki. This Wiki provides information and examples about the use of JSXGraph. &lt;br /&gt;
* [[Showcases]]&lt;br /&gt;
* [[Documentation| First steps]]&lt;br /&gt;
* [[Advanced constructions]]&lt;br /&gt;
* [[FAQ - Frequently asked questions]]&lt;br /&gt;
* [[Contributions]]&lt;br /&gt;
* [[Bringing JavaScript to its edge]]&lt;br /&gt;
* [[:Category:Examples]] contains a list of all examples&lt;br /&gt;
* [[:Category:Text]] Examples featuring the text element&lt;br /&gt;
To learn more about creating constructions with JSXGraph from the scratch visit the the examples category: [[:Category:Examples]]&lt;br /&gt;
&lt;br /&gt;
[http://jsxgraph.org Homepage of the JSXGraph project]&lt;br /&gt;
&lt;br /&gt;
== Message to all contributors ==&lt;br /&gt;
The JSXGraph team appreciates your valuable contributions to the JSXGraph wiki!&lt;br /&gt;
&lt;br /&gt;
But due to security reasons we had to enforce email based registration. Now, all users have to confirm their email address once. If you have not done so, please press &amp;quot;Confirm email&amp;quot; in [[Special:Preferences]]. Additionally to create new and edit existing wiki pages you have to [http://jsxgraph.uni-bayreuth.de/wp/contact/ contact us].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Development links ==&lt;br /&gt;
&lt;br /&gt;
* [http://jsxgraph.org Homepage]&lt;br /&gt;
* [https://github.com/jsxgraph/jsxgraph GitHub project], [https://sourceforge.net/projects/jsxgraph/ SF project]&lt;br /&gt;
* Browse [https://github.com/jsxgraph/jsxgraph our repository]&lt;br /&gt;
* [https://github.com/jsxgraph/jsxgraph/issues Issue tracker]&lt;br /&gt;
* [https://groups.google.com/forum/#!forum/jsxgraph Discussion group]&lt;br /&gt;
* [[Quick start on Ubuntu]]&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Add_custom_methods_to_objects&amp;diff=6403</id>
		<title>Add custom methods to objects</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Add_custom_methods_to_objects&amp;diff=6403"/>
		<updated>2015-06-25T19:39:25Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: Created page with &amp;quot;JSXGraph objects can be extended to support your own custom method. For example, to add a method called isAlmostOrigin() to the Point objects, write the following code :  &amp;lt;source&amp;gt; ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;JSXGraph objects can be extended to support your own custom method.&lt;br /&gt;
For example, to add a method called isAlmostOrigin() to the Point objects, write the following code :&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
 JXG.extend(JXG.Point.prototype,  {&lt;br /&gt;
       isAlmostOrigin: function () {&lt;br /&gt;
     return Math.abs(this.X()) &amp;lt; 0.5 &amp;amp;&amp;amp; Math.abs(this.Y()) &amp;lt; 0.5&lt;br /&gt;
   }&lt;br /&gt;
 })&lt;br /&gt;
&lt;br /&gt;
 board = JXG.JSXGraph.initBoard(&#039;box&#039;, { axis:true })&lt;br /&gt;
 A = board.create(&#039;point&#039;, [1, 0], {name:&#039;A&#039;});&lt;br /&gt;
 alert(A.isAlmostOrigin()) // false&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6402</id>
		<title>Advanced constructions</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6402"/>
		<updated>2015-06-25T19:34:05Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are advanced constructions which require a comparatively high knowledge of JSXGraph and JavaScript.&lt;br /&gt;
&lt;br /&gt;
Complex constructions:&lt;br /&gt;
* [[Power Series]]&lt;br /&gt;
* [[Change Equation of a Graph]]&lt;br /&gt;
* [[Nowhere differentiable continuous function]]&lt;br /&gt;
* [[&amp;quot;Infinity&amp;quot;]]&lt;br /&gt;
* [[Harmonic Waves]]&lt;br /&gt;
* [[Hilbert curve]]&lt;br /&gt;
* [[Fern (fractal)]]&lt;br /&gt;
* [[Lagrange interpolation]]&lt;br /&gt;
* [[Interpolation: Neville&#039;s algorithm]] (curves)&lt;br /&gt;
* [[Data plot of live data via AJAX]]&lt;br /&gt;
* [[Polygon through ordered set of gliders]]&lt;br /&gt;
* [[Charts from HTML tables - tutorial]]&lt;br /&gt;
* [[Bearing]]&lt;br /&gt;
* [[Data plot]]&lt;br /&gt;
* [[Tangents on circle]]&lt;br /&gt;
* [[SIR model: swine flu]]&lt;br /&gt;
* [[n-gones]] with turtles&lt;br /&gt;
* [[Stomachion]]&lt;br /&gt;
* [[Tangram]]&lt;br /&gt;
* [[Matrix multiplication II]]&lt;br /&gt;
* [[Heat map]]&lt;br /&gt;
* [[Parallel projection of a sphere]]&lt;br /&gt;
* [[Trace curve]]&lt;br /&gt;
* [[Plot data with slider]]&lt;br /&gt;
* [[Circular arc approximation by cubic Bezier curve]]&lt;br /&gt;
* [[Point &#039;fixed&#039; in one direction]]&lt;br /&gt;
* [[Function graph animation]]&lt;br /&gt;
* [[Rectangles]]&lt;br /&gt;
* [[Vertex equations of a quadratic function and it&#039;s inverse]]&lt;br /&gt;
* [[Inequalities]]&lt;br /&gt;
&lt;br /&gt;
Special features and tricks:&lt;br /&gt;
* [[Random points]]&lt;br /&gt;
* [[Highlight curve via slider]]&lt;br /&gt;
* [[The HSV color scheme]]&lt;br /&gt;
* [[Using MathJax]]&lt;br /&gt;
&lt;br /&gt;
* [[Animation of lines]]&lt;br /&gt;
* [[Adapt highlighting of objects]]&lt;br /&gt;
* [[Adding events]]&lt;br /&gt;
* [[Working with layers]]&lt;br /&gt;
* [[Adjust the visual appearance]]&lt;br /&gt;
&lt;br /&gt;
* [[Dependent gliders]]&lt;br /&gt;
* [[Mutually dependent line and gliders]]&lt;br /&gt;
* [[Using CSS styles]]&lt;br /&gt;
* [[Fill the intersection area of two circles]]&lt;br /&gt;
* [[Aligning text]]&lt;br /&gt;
* [[Positioning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Curly braces]]&lt;br /&gt;
* [[Restrict points to limited area]]&lt;br /&gt;
* [[Number line]]&lt;br /&gt;
* [[JSXGraph and sound]]&lt;br /&gt;
* [[Circle with ticks]]&lt;br /&gt;
* [[Fine tuning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Movable functiongraph]]&lt;br /&gt;
&lt;br /&gt;
Extend JSXGraph:&lt;br /&gt;
* [[Add custom methods to objects]]&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6401</id>
		<title>Advanced constructions</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6401"/>
		<updated>2015-06-25T19:31:51Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are advanced constructions which require a comparatively high knowledge of JSXGraph and JavaScript.&lt;br /&gt;
&lt;br /&gt;
Complex constructions:&lt;br /&gt;
* [[Power Series]]&lt;br /&gt;
* [[Change Equation of a Graph]]&lt;br /&gt;
* [[Nowhere differentiable continuous function]]&lt;br /&gt;
* [[&amp;quot;Infinity&amp;quot;]]&lt;br /&gt;
* [[Harmonic Waves]]&lt;br /&gt;
* [[Hilbert curve]]&lt;br /&gt;
* [[Fern (fractal)]]&lt;br /&gt;
* [[Lagrange interpolation]]&lt;br /&gt;
* [[Interpolation: Neville&#039;s algorithm]] (curves)&lt;br /&gt;
* [[Data plot of live data via AJAX]]&lt;br /&gt;
* [[Polygon through ordered set of gliders]]&lt;br /&gt;
* [[Charts from HTML tables - tutorial]]&lt;br /&gt;
* [[Bearing]]&lt;br /&gt;
* [[Data plot]]&lt;br /&gt;
* [[Tangents on circle]]&lt;br /&gt;
* [[SIR model: swine flu]]&lt;br /&gt;
* [[n-gones]] with turtles&lt;br /&gt;
* [[Stomachion]]&lt;br /&gt;
* [[Tangram]]&lt;br /&gt;
* [[Matrix multiplication II]]&lt;br /&gt;
* [[Heat map]]&lt;br /&gt;
* [[Parallel projection of a sphere]]&lt;br /&gt;
* [[Trace curve]]&lt;br /&gt;
* [[Plot data with slider]]&lt;br /&gt;
* [[Circular arc approximation by cubic Bezier curve]]&lt;br /&gt;
* [[Point &#039;fixed&#039; in one direction]]&lt;br /&gt;
* [[Function graph animation]]&lt;br /&gt;
* [[Rectangles]]&lt;br /&gt;
* [[Vertex equations of a quadratic function and it&#039;s inverse]]&lt;br /&gt;
* [[Inequalities]]&lt;br /&gt;
&lt;br /&gt;
Special features and tricks:&lt;br /&gt;
* [[Random points]]&lt;br /&gt;
* [[Highlight curve via slider]]&lt;br /&gt;
* [[The HSV color scheme]]&lt;br /&gt;
* [[Using MathJax]]&lt;br /&gt;
&lt;br /&gt;
* [[Animation of lines]]&lt;br /&gt;
* [[Adapt highlighting of objects]]&lt;br /&gt;
* [[Adding events]]&lt;br /&gt;
* [[Working with layers]]&lt;br /&gt;
* [[Adjust the visual appearance]]&lt;br /&gt;
&lt;br /&gt;
* [[Dependent gliders]]&lt;br /&gt;
* [[Mutually dependent line and gliders]]&lt;br /&gt;
* [[Using CSS styles]]&lt;br /&gt;
* [[Fill the intersection area of two circles]]&lt;br /&gt;
* [[Aligning text]]&lt;br /&gt;
* [[Positioning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Curly braces]]&lt;br /&gt;
* [[Restrict points to limited area]]&lt;br /&gt;
* [[Number line]]&lt;br /&gt;
* [[JSXGraph and sound]]&lt;br /&gt;
* [[Circle with ticks]]&lt;br /&gt;
* [[Fine tuning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Movable functiongraph]]&lt;br /&gt;
&lt;br /&gt;
Extend JSXGraph:&lt;br /&gt;
* [[Add custom method to objects]]&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Movable_functiongraph&amp;diff=6400</id>
		<title>Movable functiongraph</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Movable_functiongraph&amp;diff=6400"/>
		<updated>2015-06-25T19:30:32Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;By default, the function graph can not be dragged around.&lt;br /&gt;
When we allow to the function graph to be movable by setting &amp;quot;fixed:false&amp;quot; we have to notify JSXGraph that the function graph depends on the two free points A and B.&lt;br /&gt;
&lt;br /&gt;
This example shows that a functiongraph can be made movable.&lt;br /&gt;
&lt;br /&gt;
It is produced by the following commands:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;jxgbox&amp;quot; class=&amp;quot;jxgbox&amp;quot; style=&amp;quot;width:500px; height:200px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
  var board = JXG.JSXGraph.initBoard(&#039;jxgbox&#039;, {boundingbox: [-5, 2, 5, -2], axis: true});&lt;br /&gt;
  var A = board.create(&#039;point&#039;, [1, 0], {name:&#039;A&#039;});&lt;br /&gt;
  var B = board.create(&#039;point&#039;, [3, 1], {name:&#039;B&#039;});&lt;br /&gt;
  &lt;br /&gt;
  var f = board.create(&#039;functiongraph&#039;, function(x) {&lt;br /&gt;
      var ax = A.X(),&lt;br /&gt;
          ay = A.Y(),&lt;br /&gt;
          bx = B.X(),&lt;br /&gt;
          by = B.Y(),&lt;br /&gt;
          a = (by - ay) / ( (bx - ax) * (bx - ax) );&lt;br /&gt;
      return a * (x - ax) * (x - ax) + ay;&lt;br /&gt;
  }, {fixed: false});&lt;br /&gt;
  &lt;br /&gt;
  f.addParents([A, B]);&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;jsxgraph box=&amp;quot;jxgbox&amp;quot; width=&amp;quot;500&amp;quot; height=&amp;quot;200&amp;quot;&amp;gt;&lt;br /&gt;
  var board = JXG.JSXGraph.initBoard(&#039;jxgbox&#039;, {boundingbox: [-5, 2, 5, -2], axis: true});&lt;br /&gt;
  var A = board.create(&#039;point&#039;, [1, 0], {name:&#039;A&#039;});&lt;br /&gt;
  var B = board.create(&#039;point&#039;, [3, 1], {name:&#039;B&#039;});&lt;br /&gt;
  &lt;br /&gt;
  var f = board.create(&#039;functiongraph&#039;, function(x) {&lt;br /&gt;
      var ax = A.X(),&lt;br /&gt;
          ay = A.Y(),&lt;br /&gt;
          bx = B.X(),&lt;br /&gt;
          by = B.Y(),&lt;br /&gt;
          a = (by - ay) / ( (bx - ax) * (bx - ax) );&lt;br /&gt;
      return a * (x - ax) * (x - ax) + ay;&lt;br /&gt;
  }, {fixed: false});&lt;br /&gt;
  &lt;br /&gt;
  f.addParents([A, B]);&lt;br /&gt;
&amp;lt;/jsxgraph&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Movable_functiongraph&amp;diff=6399</id>
		<title>Movable functiongraph</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Movable_functiongraph&amp;diff=6399"/>
		<updated>2015-06-25T19:28:27Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: Created page with &amp;quot;This example shows that a functiongraph can be made movable. It is produced by the following commands: &amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt; &amp;lt;div id=&amp;quot;jxgbox&amp;quot; class=&amp;quot;jxgbox&amp;quot; style=&amp;quot;width:500px; height:200px...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This example shows that a functiongraph can be made movable.&lt;br /&gt;
It is produced by the following commands:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;jxgbox&amp;quot; class=&amp;quot;jxgbox&amp;quot; style=&amp;quot;width:500px; height:200px;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
  var board = JXG.JSXGraph.initBoard(&#039;jxgbox&#039;, {boundingbox: [-5, 2, 5, -2], axis: true});&lt;br /&gt;
  var A = board.create(&#039;point&#039;, [1, 0], {name:&#039;A&#039;});&lt;br /&gt;
  var B = board.create(&#039;point&#039;, [3, 1], {name:&#039;B&#039;});&lt;br /&gt;
  &lt;br /&gt;
  var f = board.create(&#039;functiongraph&#039;, function(x) {&lt;br /&gt;
      var ax = A.X(),&lt;br /&gt;
          ay = A.Y(),&lt;br /&gt;
          bx = B.X(),&lt;br /&gt;
          by = B.Y(),&lt;br /&gt;
          a = (by - ay) / ( (bx - ax) * (bx - ax) );&lt;br /&gt;
      return a * (x - ax) * (x - ax) + ay;&lt;br /&gt;
  }, {fixed: false});&lt;br /&gt;
  &lt;br /&gt;
  f.addParents([A, B]);&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;jsxgraph box=&amp;quot;jxgbox&amp;quot; width=&amp;quot;500&amp;quot; height=&amp;quot;200&amp;quot;&amp;gt;&lt;br /&gt;
  var board = JXG.JSXGraph.initBoard(&#039;jxgbox&#039;, {boundingbox: [-5, 2, 5, -2], axis: true});&lt;br /&gt;
  var A = board.create(&#039;point&#039;, [1, 0], {name:&#039;A&#039;});&lt;br /&gt;
  var B = board.create(&#039;point&#039;, [3, 1], {name:&#039;B&#039;});&lt;br /&gt;
  &lt;br /&gt;
  var f = board.create(&#039;functiongraph&#039;, function(x) {&lt;br /&gt;
      var ax = A.X(),&lt;br /&gt;
          ay = A.Y(),&lt;br /&gt;
          bx = B.X(),&lt;br /&gt;
          by = B.Y(),&lt;br /&gt;
          a = (by - ay) / ( (bx - ax) * (bx - ax) );&lt;br /&gt;
      return a * (x - ax) * (x - ax) + ay;&lt;br /&gt;
  }, {fixed: false});&lt;br /&gt;
  &lt;br /&gt;
  f.addParents([A, B]);&lt;br /&gt;
&amp;lt;/jsxgraph&amp;gt;&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6398</id>
		<title>Advanced constructions</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6398"/>
		<updated>2015-06-25T19:23:51Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are advanced constructions which require a comparatively high knowledge of JSXGraph and JavaScript.&lt;br /&gt;
&lt;br /&gt;
Complex constructions:&lt;br /&gt;
* [[Power Series]]&lt;br /&gt;
* [[Change Equation of a Graph]]&lt;br /&gt;
* [[Nowhere differentiable continuous function]]&lt;br /&gt;
* [[&amp;quot;Infinity&amp;quot;]]&lt;br /&gt;
* [[Harmonic Waves]]&lt;br /&gt;
* [[Hilbert curve]]&lt;br /&gt;
* [[Fern (fractal)]]&lt;br /&gt;
* [[Lagrange interpolation]]&lt;br /&gt;
* [[Interpolation: Neville&#039;s algorithm]] (curves)&lt;br /&gt;
* [[Data plot of live data via AJAX]]&lt;br /&gt;
* [[Polygon through ordered set of gliders]]&lt;br /&gt;
* [[Charts from HTML tables - tutorial]]&lt;br /&gt;
* [[Bearing]]&lt;br /&gt;
* [[Data plot]]&lt;br /&gt;
* [[Tangents on circle]]&lt;br /&gt;
* [[SIR model: swine flu]]&lt;br /&gt;
* [[n-gones]] with turtles&lt;br /&gt;
* [[Stomachion]]&lt;br /&gt;
* [[Tangram]]&lt;br /&gt;
* [[Matrix multiplication II]]&lt;br /&gt;
* [[Heat map]]&lt;br /&gt;
* [[Parallel projection of a sphere]]&lt;br /&gt;
* [[Trace curve]]&lt;br /&gt;
* [[Plot data with slider]]&lt;br /&gt;
* [[Circular arc approximation by cubic Bezier curve]]&lt;br /&gt;
* [[Point &#039;fixed&#039; in one direction]]&lt;br /&gt;
* [[Function graph animation]]&lt;br /&gt;
* [[Rectangles]]&lt;br /&gt;
* [[Vertex equations of a quadratic function and it&#039;s inverse]]&lt;br /&gt;
* [[Inequalities]]&lt;br /&gt;
&lt;br /&gt;
Special features and tricks:&lt;br /&gt;
* [[Random points]]&lt;br /&gt;
* [[Highlight curve via slider]]&lt;br /&gt;
* [[The HSV color scheme]]&lt;br /&gt;
* [[Using MathJax]]&lt;br /&gt;
&lt;br /&gt;
* [[Animation of lines]]&lt;br /&gt;
* [[Adapt highlighting of objects]]&lt;br /&gt;
* [[Adding events]]&lt;br /&gt;
* [[Working with layers]]&lt;br /&gt;
* [[Adjust the visual appearance]]&lt;br /&gt;
&lt;br /&gt;
* [[Dependent gliders]]&lt;br /&gt;
* [[Mutually dependent line and gliders]]&lt;br /&gt;
* [[Using CSS styles]]&lt;br /&gt;
* [[Fill the intersection area of two circles]]&lt;br /&gt;
* [[Aligning text]]&lt;br /&gt;
* [[Positioning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Curly braces]]&lt;br /&gt;
* [[Restrict points to limited area]]&lt;br /&gt;
* [[Number line]]&lt;br /&gt;
* [[JSXGraph and sound]]&lt;br /&gt;
* [[Circle with ticks]]&lt;br /&gt;
* [[Fine tuning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Movable functiongraph]]&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
	<entry>
		<id>https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6397</id>
		<title>Advanced constructions</title>
		<link rel="alternate" type="text/html" href="https://jsxgraph.org/wiki/index.php?title=Advanced_constructions&amp;diff=6397"/>
		<updated>2015-06-25T19:21:42Z</updated>

		<summary type="html">&lt;p&gt;Nicolas.adenis.lamarre: add a link to the page dependant functiongraph and points&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are advanced constructions which require a comparatively high knowledge of JSXGraph and JavaScript.&lt;br /&gt;
&lt;br /&gt;
Complex constructions:&lt;br /&gt;
* [[Power Series]]&lt;br /&gt;
* [[Change Equation of a Graph]]&lt;br /&gt;
* [[Nowhere differentiable continuous function]]&lt;br /&gt;
* [[&amp;quot;Infinity&amp;quot;]]&lt;br /&gt;
* [[Harmonic Waves]]&lt;br /&gt;
* [[Hilbert curve]]&lt;br /&gt;
* [[Fern (fractal)]]&lt;br /&gt;
* [[Lagrange interpolation]]&lt;br /&gt;
* [[Interpolation: Neville&#039;s algorithm]] (curves)&lt;br /&gt;
* [[Data plot of live data via AJAX]]&lt;br /&gt;
* [[Polygon through ordered set of gliders]]&lt;br /&gt;
* [[Charts from HTML tables - tutorial]]&lt;br /&gt;
* [[Bearing]]&lt;br /&gt;
* [[Data plot]]&lt;br /&gt;
* [[Tangents on circle]]&lt;br /&gt;
* [[SIR model: swine flu]]&lt;br /&gt;
* [[n-gones]] with turtles&lt;br /&gt;
* [[Stomachion]]&lt;br /&gt;
* [[Tangram]]&lt;br /&gt;
* [[Matrix multiplication II]]&lt;br /&gt;
* [[Heat map]]&lt;br /&gt;
* [[Parallel projection of a sphere]]&lt;br /&gt;
* [[Trace curve]]&lt;br /&gt;
* [[Plot data with slider]]&lt;br /&gt;
* [[Circular arc approximation by cubic Bezier curve]]&lt;br /&gt;
* [[Point &#039;fixed&#039; in one direction]]&lt;br /&gt;
* [[Function graph animation]]&lt;br /&gt;
* [[Rectangles]]&lt;br /&gt;
* [[Vertex equations of a quadratic function and it&#039;s inverse]]&lt;br /&gt;
* [[Inequalities]]&lt;br /&gt;
&lt;br /&gt;
Special features and tricks:&lt;br /&gt;
* [[Random points]]&lt;br /&gt;
* [[Highlight curve via slider]]&lt;br /&gt;
* [[The HSV color scheme]]&lt;br /&gt;
* [[Using MathJax]]&lt;br /&gt;
&lt;br /&gt;
* [[Animation of lines]]&lt;br /&gt;
* [[Adapt highlighting of objects]]&lt;br /&gt;
* [[Adding events]]&lt;br /&gt;
* [[Working with layers]]&lt;br /&gt;
* [[Adjust the visual appearance]]&lt;br /&gt;
&lt;br /&gt;
* [[Dependent gliders]]&lt;br /&gt;
* [[Mutually dependent line and gliders]]&lt;br /&gt;
* [[Using CSS styles]]&lt;br /&gt;
* [[Fill the intersection area of two circles]]&lt;br /&gt;
* [[Aligning text]]&lt;br /&gt;
* [[Positioning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Curly braces]]&lt;br /&gt;
* [[Restrict points to limited area]]&lt;br /&gt;
* [[Number line]]&lt;br /&gt;
* [[JSXGraph and sound]]&lt;br /&gt;
* [[Circle with ticks]]&lt;br /&gt;
* [[Fine tuning of labels]]&lt;br /&gt;
&lt;br /&gt;
* [[Dependent functiongraph and points]]&lt;/div&gt;</summary>
		<author><name>Nicolas.adenis.lamarre</name></author>
	</entry>
</feed>