Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

ImageTexturedShellImporter3DF.h
1 // Copyright (c) Tech Soft 3D, Inc.
2 //
3 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc.,
4 // and considered a trade secret as defined under civil and criminal statutes.
5 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of
6 // unauthorized use or misappropriation of its trade secrets. Use of this information
7 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under
8 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use.
9 
10 #pragma once
11 
12 #include "ImageTexturedShellImporter.h"
13 #include "ModelImporter3DF.h"
14 
15 #include <hc.h>
16 
17 #include <string>
18 
19 class ImageTexturedShellImporter3DF : public ImageTexturedShellImporter
20 {
21 public:
22  ImageTexturedShellImporter3DF(SegmentOrganizer& segmentOrganizer, ImageRepository& imageRepository, TextureRepository& textureRepository, ModelImporter3DF& modelImporter);
23 
24 private:
27 
28  virtual bool InsertQuad(SegmentKey & segment, std::vector<double> const & transform, float const points[], int const flist[], float const vertexParams[], bool isVisible);
29  virtual void ApplyTexture(SegmentKey & segment, int32_t const textureId, std::string const & imageName, bool isVisible);
30 
31  ModelImporter3DF& _modelImporter;
32 };
Definition: ModelImporter3DF.h:16
Definition: ImageTexturedShellImporter3DF.h:19