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 * Alex Wai 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: GU_CameraParms.h (C++) 00015 * 00016 * COMMENTS: The GU_CameraParms class is a class for holding camera 00017 * information for generating perspective texture coordinates. 00018 */ 00019 00020 #ifndef __GU_CameraParms_h__ 00021 #define __GU_CameraParms_h__ 00022 00023 #include "GU_API.h" 00024 #include <UT/UT_Matrix4.h> 00025 00026 class GU_API GU_CameraParms 00027 { 00028 public: 00029 00030 GU_CameraParms(); 00031 ~GU_CameraParms(); 00032 00033 UT_Matrix4 toTexture; 00034 float minPlane; 00035 float maxPlane; 00036 }; 00037 00038 #endif
1.5.9