Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

ShellImporter3DF.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 "ShellImporter.h"
13 
14 class ShellImporter3DF : public ShellImporter
15 {
16 public:
17  ShellImporter3DF(SegmentOrganizer& SegmentOrganizer, TextureWriter& textureWriter, InheritanceManager& inheritanceManager);
18 
19 private:
21  ShellImporter3DF& operator=(const ShellImporter3DF&);
22 
23  virtual bool InsertShell(SegmentKey & segment, const std::vector<SUPoint3Df>& points,
24  const std::vector<int>& faces, const std::vector<SUVector3Df>& normalVectors,
25  const std::vector<float>& vertexParameters, bool isVisible = true);
26 
27 private:
28  static const std::size_t s_numParametersPerVertex = 3;
29 };
Definition: ShellImporter3DF.h:14