| Current Path : /usr/home/beeson/public_html/dynamicgeometry/org/dynamicgeometry/scripts/ |
| Current File : /usr/home/beeson/public_html/dynamicgeometry/org/dynamicgeometry/scripts/TestPointScript.java |
package org.dynamicgeometry.scripts;
/**
* Author: M. Beeson Geoscript for bisecting segment(A,B) This code is in the
* public domain.
*/
public class TestPointScript extends Scripts
{
public TestPointScript()
{
super("TestPoint", "Point", new String[] {"A","B"},
new String[]{"Point", "Point"},
new String[] {
"L1 = Line(A,B);",
"return L1;"});
}
}