001: /*
002: * $RCSfile: CylinderSensor.java,v $
003: *
004: * @(#)CylinderSensor.java 1.17 98/11/05 20:34:23
005: *
006: * Copyright (c) 1996-1998 Sun Microsystems, Inc. All Rights Reserved.
007: *
008: * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
009: * modify and redistribute this software in source and binary code form,
010: * provided that i) this copyright notice and license appear on all copies of
011: * the software; and ii) Licensee does not utilize the software in a manner
012: * which is disparaging to Sun.
013: *
014: * This software is provided "AS IS," without a warranty of any kind. ALL
015: * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
016: * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
017: * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
018: * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
019: * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
020: * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
021: * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
022: * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
023: * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
024: * POSSIBILITY OF SUCH DAMAGES.
025: *
026: * This software is not designed or intended for use in on-line control of
027: * aircraft, air traffic, aircraft navigation or aircraft communications; or in
028: * the design, construction, operation or maintenance of any nuclear
029: * facility. Licensee represents and warrants that it will not use or
030: * redistribute the Software for such purposes.
031: *
032: * $Revision: 1.2 $
033: * $Date: 2005/02/03 23:06:55 $
034: * $State: Exp $
035: */
036: /*
037: *@Author: Rick Goldberg
038: *@Author: Doug Gehringer
039: */
040: package org.jdesktop.j3d.loaders.vrml97.impl;
041:
042: import javax.vecmath.Point3d;
043:
044: /** Description of the Class */
045: public class CylinderSensor extends DragSensor {
046:
047: // exposedField
048: SFFloat diskAngle;
049: SFFloat maxAngle;
050: SFFloat minAngle;
051: SFFloat offset;
052:
053: // eventOut
054: SFRotation rotation;
055:
056: /**
057: *Constructor for the CylinderSensor object
058: *
059: *@param loader Description of the Parameter
060: */
061: public CylinderSensor(Loader loader) {
062: super (loader);
063: initCylinderSensorFields();
064: }
065:
066: /** Description of the Method */
067: void initFields() {
068: super .initFields();
069: initCylinderSensorFields();
070: }
071:
072: /**
073: * Description of the Method
074: *
075: *@return Description of the Return Value
076: */
077: public Object clone() {
078: return new CylinderSensor(loader);
079: }
080:
081: /**
082: * Description of the Method
083: *
084: *@param eventInName Description of the Parameter
085: *@param time Description of the Parameter
086: */
087: public void notifyMethod(String eventInName, double time) {
088: }
089:
090: /**
091: * Gets the type attribute of the CylinderSensor object
092: *
093: *@return The type value
094: */
095: public String getType() {
096: return "CylinderSensor";
097: }
098:
099: /** Description of the Method */
100: void initCylinderSensorFields() {
101: diskAngle.init(this , FieldSpec, Field.EXPOSED_FIELD,
102: "diskAngle");
103: maxAngle.init(this , FieldSpec, Field.EXPOSED_FIELD, "maxAngle");
104: minAngle.init(this , FieldSpec, Field.EXPOSED_FIELD, "minAngle");
105: offset.init(this , FieldSpec, Field.EXPOSED_FIELD, "offset");
106: }
107:
108: /** Description of the Method */
109: void offset() {
110: ;
111: }
112:
113: /**
114: * Description of the Method
115: *
116: *@param now Description of the Parameter
117: */
118: void simTick(double now) {
119: ;
120: }
121:
122: /**
123: * Description of the Method
124: *
125: *@param p1 Description of the Parameter
126: *@param p2 Description of the Parameter
127: *@param node Description of the Parameter
128: *@param path Description of the Parameter
129: */
130: void update(Point3d p1, Point3d p2, javax.media.j3d.Node node,
131: javax.media.j3d.SceneGraphPath path) {
132: System.out.println("CylinderSensor NYI");
133: }
134:
135: }
|