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-2020 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 00080 class SbCylinderProjector : public SbProjector 00081 { 00082 public: 00086 virtual ~SbCylinderProjector() {}; 00087 00093 virtual SbVec3f project(const SbVec2f &point) = 0; 00099 virtual SbVec3f intersect( const SbLine &line ) = 0; 00100 00109 SbVec3f projectAndGetRotation(const SbVec2f &point, 00110 SbRotation &rot); 00111 00116 virtual SbRotation getRotation(const SbVec3f &point1, 00117 const SbVec3f &point2) = 0; 00118 00123 void setCylinder(const SbCylinder &cyl); 00124 00128 const SbCylinder & getCylinder() const { return cylinder; } 00129 00134 void setOrientToEye(SbBool orientToEye); 00138 SbBool isOrientToEye() const { return orientToEye; } 00144 void setFront(SbBool isFront); 00149 SbBool isFront() const { return intersectFront; } 00154 SbBool isPointInFront( const SbVec3f &point ) const; 00158 virtual void setWorkingSpace(const SbMatrix &space); 00159 00160 private: 00161 // Constructors 00162 // The default cylinder to is centered about the Y axis and 00163 // has a radius of 1.0. 00164 SbCylinderProjector(SbBool orientToEye); 00165 SbCylinderProjector(const SbCylinder &cyl, 00166 SbBool orientToEye); 00167 00168 // Are intersections done on the front half ( if not, they're done on th e 00169 // back half) of the cylinder? 00170 SbBool intersectFront; 00171 00172 // Just like cylinder::intersect, except always returns 00173 // the intersection that is in "front". 00174 SbBool intersectCylinderFront(const SbLine &line, SbVec3f &result); 00175 00176 SbCylinder cylinder; // Cylinder for this projector. 00177 SbBool orientToEye; // TRUE if always oriented to eye. 00178 SbBool needSetup; // Set TRUE whenever cylinder, 00179 // work space or orientation changes. 00180 00181 // Cached last point on this projector. Subclasses must set 00182 // this in their project and getRotation methods. 00183 SbVec3f lastPoint; 00184 00185 }; 00186 00187 00188 #endif /* _SB_CYLINDER_PROJECTOR_ */ 00189 00190