~ubuntu-branches/debian/sid/geogebra/sid

« back to all changes in this revision

Viewing changes to geogebra/kernel/discrete/signalprocesser/voronoi/representation/simpletriangulation/VTriangle.java

  • Committer: Package Import Robot
  • Author(s): Giovanni Mascellani
  • Date: 2012-01-10 11:37:41 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120110113741-satwohsd4de4ite1
Tags: 4.0.19.0+dfsg1-1
* New upstream version (closes: #649893).
* Update dependency: icedtea-plugin -> icedtea-netx-common (LP: #893007).
* New thumbnailer configuration compatible with Gnome 3.
* Package building is now managed by javahelper instead of upstream
  build.xml.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package geogebra.kernel.discrete.signalprocesser.voronoi.representation.simpletriangulation;
 
2
import geogebra.kernel.discrete.signalprocesser.voronoi.VPoint;
 
3
 
 
4
public class VTriangle extends VPoint {
 
5
    
 
6
    public VPoint p1;
 
7
    public VPoint p2;
 
8
    public VPoint p3;
 
9
    
 
10
    public VTriangle() { super(); }
 
11
    public VTriangle(int x, int y) { super(x, y); }
 
12
    public VTriangle(VPoint point) { super(point); }
 
13
    
 
14
}