00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Rob Bairos 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: GU_Joint.h (C++) 00015 * 00016 * COMMENTS: 00017 * Create skeleton-compatible joints between each pair of circles 00018 */ 00019 00020 00021 #ifndef __GU_Joint_h__ 00022 #define __GU_Joint_h__ 00023 00024 00025 #include "GU_API.h" 00026 class GB_PrimitiveGroup; 00027 class GEO_PrimCircle; 00028 00029 00030 class GU_API GU_JointParms 00031 { 00032 public: 00033 GU_JointParms(); 00034 ~GU_JointParms(); 00035 00036 float scale1; // bezier spans lengths 00037 float scale2; 00038 float offset1; 00039 float offset2; 00040 00041 int divs; // number of circles in joint 00042 00043 int doOrient; // hull points inward 00044 00045 int smoothPath; // linear or bezier interpolant 00046 int smoothTwist; 00047 00048 int doMajorAxes; // align axes; 00049 int doMinTwist; // +/- half turn maximum 00050 00051 int includeLeft; // copy left/right circles 00052 int includeRight; 00053 00054 const GEO_PrimCircle *left; // circles to join 00055 const GEO_PrimCircle *right; 00056 00057 int cregions; // Create capture regions? 00058 }; 00059 00060 #endif
1.5.9