hp2FEM
0.1
|
00001 #ifndef _PARAMETRIC3DPOINTS_H_ 00002 #define _PARAMETRIC3DPOINTS_H_ 00003 // --------------------------------------------- 00004 // company : 00005 // user : 00006 // date : 22 Mar 2015 17:25 00007 // file : Parametric3DPoints.h 00008 // markers : Full 00009 // language : C++ 00010 // generator : Metamill 6.0 00011 // --------------------------------------------- 00012 00013 //#UBLK-BEG-HEADERH 00014 //#UBLK-END-HEADERH 00015 00016 /*================================================================================================= 00017 = = 00018 = Copyright 2010-2015 Marco Lucio Bittencourt / Fabiano Fernandes Bargos = 00019 = Gilberto Luis Valente / Jorge Luis Suzuki / Allan Patrick Cordeiro Dias = 00020 = = 00021 = Licensed under the Apache License, Version 2.0 (the "License"); = 00022 = you may not use this file except in compliance with the License. = 00023 = You may obtain a copy of the License at = 00024 = = 00025 = http://www.apache.org/licenses/LICENSE-2.0 = 00026 = = 00027 = Unless required by applicable law or agreed to in writing, software = 00028 = distributed under the License is distributed on an "AS IS" BASIS, = 00029 = WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. = 00030 = See the License for the specific language governing permissions and = 00031 = limitations under the License. = 00032 = = 00033 =================================================================================================*/ 00034 00035 00036 #include "ds/Array.h" 00037 #include "NURBSBoundaryEntityInfo.h" 00038 #include "NURBSSurfaceBoundaryEntity.h" 00039 #include "NURBSLineBoundaryEntity.h" 00040 00041 00045 class Parametric3DPoints 00046 { 00047 //#UBLK-BEG-CLASSDEF mm:755a69ba-d832-4279-8ec5-e01114089606 00048 //#UBLK-END-CLASSDEF 00049 00050 public: 00051 00052 // METHOD=mm:eea99b62-950b-41ee-bd16-ed761a7c56a0 00053 Parametric3DPoints(); 00054 00055 // METHOD=mm:81e9a3cf-afd3-47aa-8b42-b72bee2d5ba1 00056 ~Parametric3DPoints(); 00057 00058 // METHOD=mm:52e1fdf6-87bc-484c-b7fe-93f93305054d 00059 void Save(FILE* File); 00060 00061 // METHOD=mm:320dac3f-f4aa-4bd5-ac78-1099f642b6cc 00062 void Restore(FILE* File); 00063 00064 // METHOD=mm:1a132af2-f8d0-4cf5-bf37-bb13bb183887 00065 void Read(FILE* File); 00066 00067 // METHOD=mm:3feb0d85-43f0-4914-865d-9a4d108f5440 00068 void Print(FILE* File = stdout); 00069 00070 // METHOD=mm:e9a657c0-6974-4642-b09a-ba9049ab9496 00071 void Free(); 00072 00073 // METHOD=mm:89b42872-7521-49a8-bda1-3ae728de8756 00074 NURBSSurfaceBoundaryEntity& operator[](long PointNumber); 00075 00076 00077 protected: 00078 00090 // attr=mm:61156b27-ff97-4003-83d2-a50790e08fbf 00091 BuiltInArray<long> PointIndex; 00092 00100 // attr=mm:36e90a9c-a270-47a4-982a-c75cb20adc34 00101 Array<NURBSSurfaceBoundaryEntity> Points; 00102 00103 00104 private: 00105 00106 //#UBLK-BEG-CLASSMEMB mm:755a69ba-d832-4279-8ec5-e01114089606 00107 //#UBLK-END-CLASSMEMB 00108 }; 00109 00110 //#UBLK-BEG-GLOBALH 00111 //#UBLK-END-GLOBALH 00112 00113 00114 #endif // _PARAMETRIC3DPOINTS_H_