Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

GroupRepository3DF.h
1 // Copyright (c) Tech Soft 3D
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 "GroupRepository.h"
13 
14 #include <hc.h>
15 
16 #include "SegmentKey3DF.h"
17 
18 class GroupRepository3DF : public GroupRepository
19 {
20 public:
21  GroupRepository3DF(SegmentKey const & includeSegmentKey, GeometryImporter& geometryImporter,
22  VisibilityChecker& visibilityChecker, ImageRepository& imageRepository,
23  StyleRepository& textureRepository);
24 
25 private:
27  GroupRepository3DF& operator=(const GroupRepository3DF&);
28 
29  virtual void ApplyGroupColors(SegmentKey & segment, SUColor const & color);
30  virtual void ApplyGroupTextures(SegmentKey & segment, int32_t const groupTextureId, std::string const & imageName);
31 
32  virtual bool InsertInstance(SegmentKey & segment, SegmentKey & includeSegment, std::vector<float> const & floatTransform, bool const isVisible);
33 };
Definition: GroupRepository3DF.h:18