00001 /******************************************************************************* 00002 * Copyright (c) 2013 Stefan Profanter. All rights reserved. This program and the accompanying 00003 * materials are made available under the terms of the GNU Public License v3.0 which accompanies 00004 * this distribution, and is available at http://www.gnu.org/licenses/gpl.html 00005 * 00006 * Contributors: Stefan Profanter - initial API and implementation, Year: 2013 00007 ******************************************************************************/ 00008 package edu.tum.cs.vis.model.util; 00009 00010 import javax.vecmath.Point3f; 00011 00018 public class IntersectedTriangle { 00027 public IntersectedTriangle(Triangle tri, Point3f intersect) { 00028 this.t = tri; 00029 this.intersection = intersect; 00030 } 00031 00035 public Triangle t; 00036 00040 public Point3f intersection; 00041 00042 }