00001 /*======================================================================= 00002 * Copyright 1991-1996, Silicon Graphics, Inc. 00003 * ALL RIGHTS RESERVED 00004 * 00005 * UNPUBLISHED -- Rights reserved under the copyright laws of the United 00006 * States. Use of a copyright notice is precautionary only and does not 00007 * imply publication or disclosure. 00008 * 00009 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND: 00010 * Use, duplication or disclosure by the Government is subject to restrictions 00011 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights 00012 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or 00013 * in similar or successor clauses in the FAR, or the DOD or NASA FAR 00014 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc., 00015 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311. 00016 * 00017 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY 00018 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION, 00019 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY 00020 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON 00021 * GRAPHICS, INC. 00022 **=======================================================================*/ 00023 /*======================================================================= 00024 ** Author : Howard Look (MMM yyyy) 00025 **=======================================================================*/ 00026 /*======================================================================= 00027 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00028 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00029 *** *** 00030 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00031 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00032 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00033 *** *** 00034 *** RESTRICTED RIGHTS LEGEND *** 00035 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00036 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00037 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00038 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00039 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00040 *** *** 00041 *** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, *** 00042 *** BORDEAUX, FRANCE *** 00043 *** ALL RIGHTS RESERVED *** 00044 **=======================================================================*/ 00045 /*======================================================================= 00046 ** Modified by : VSG (MMM YYYY) 00047 **=======================================================================*/ 00048 00049 00050 #ifndef _SB_CYLINDER_PROJECTOR_ 00051 #define _SB_CYLINDER_PROJECTOR_ 00052 00053 #include <Inventor/projectors/SbProjector.h> 00054 00079 class SbCylinderProjector : public SbProjector 00080 { 00081 public: 00085 virtual ~SbCylinderProjector() {}; 00086 00092 virtual SbVec3f project(const SbVec2f &point) = 0; 00098 virtual SbVec3f intersect( const SbLine &line ) = 0; 00099 00108 SbVec3f projectAndGetRotation(const SbVec2f &point, 00109 SbRotation &rot); 00110 00115 virtual SbRotation getRotation(const SbVec3f &point1, 00116 const SbVec3f &point2) = 0; 00117 00122 void setCylinder(const SbCylinder &cyl); 00123 00127 const SbCylinder & getCylinder() const { return cylinder; } 00128 00133 void setOrientToEye(SbBool orientToEye); 00137 SbBool isOrientToEye() const { return orientToEye; } 00143 void setFront(SbBool isFront); 00148 SbBool isFront() const { return intersectFront; } 00153 SbBool isPointInFront( const SbVec3f &point ) const; 00157 virtual void setWorkingSpace(const SbMatrix &space); 00158 00159 private: 00160 // Constructors 00161 // The default cylinder to is centered about the Y axis and 00162 // has a radius of 1.0. 00163 SbCylinderProjector(SbBool orientToEye); 00164 SbCylinderProjector(const SbCylinder &cyl, 00165 SbBool orientToEye); 00166 00167 // Are intersections done on the front half ( if not, they're done on th e 00168 // back half) of the cylinder? 00169 SbBool intersectFront; 00170 00171 // Just like cylinder::intersect, except always returns 00172 // the intersection that is in "front". 00173 SbBool intersectCylinderFront(const SbLine &line, SbVec3f &result); 00174 00175 SbCylinder cylinder; // Cylinder for this projector. 00176 SbBool orientToEye; // TRUE if always oriented to eye. 00177 SbBool needSetup; // Set TRUE whenever cylinder, 00178 // work space or orientation changes. 00179 00180 // Cached last point on this projector. Subclasses must set 00181 // this in their project and getRotation methods. 00182 SbVec3f lastPoint; 00183 00184 }; 00185 00186 00187 #endif /* _SB_CYLINDER_PROJECTOR_ */ 00188 00189