hp2FEM  0.1
include/nurbs/Parametric2DPoints.h
00001 #ifndef _PARAMETRIC2DPOINTS_H_
00002 #define _PARAMETRIC2DPOINTS_H_
00003 // ---------------------------------------------
00004 // company   : 
00005 // user      : 
00006 // date      : 22 Mar 2015 17:25
00007 // file      : Parametric2DPoints.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 Parametric2DPoints
00046 {
00047 //#UBLK-BEG-CLASSDEF mm:d6621aa3-397b-4938-8730-fffa8758ea32
00048 //#UBLK-END-CLASSDEF
00049 
00050  public:
00051 
00052    // METHOD=mm:8099227a-2d03-4e0e-9cb6-7a89542d7076
00053    Parametric2DPoints();
00054 
00055    // METHOD=mm:cdfbab1c-c96f-4bcb-b289-c990ec32ee64
00056    ~Parametric2DPoints();
00057 
00058    // METHOD=mm:334934e9-7086-4966-b191-af47a194fe7d
00059    void Save(FILE* File);
00060 
00061    // METHOD=mm:8473e286-6431-4981-971b-29089137e9ad
00062    void Restore(FILE* File);
00063 
00064    // METHOD=mm:9dbf32e1-8a28-40e1-8f3a-10ff5c6f6277
00065    void Read(FILE* File);
00066 
00067    // METHOD=mm:e5202985-b107-4be4-8831-109beea43c87
00068    void Print(FILE* File = stdout);
00069 
00070    // METHOD=mm:d3af0e3c-5939-4310-817a-2c6f26c28bbb
00071    void Free();
00072 
00073    // METHOD=mm:7baf43e1-1de0-407a-9d6d-663430bcf851
00074    NURBSLineBoundaryEntity& operator[](long PointNumber);
00075 
00076 
00077  protected:
00078 
00090    // attr=mm:b02a1df8-d360-477a-96c9-72c28f9e4b3f
00091    BuiltInArray<long> PointIndex;
00092 
00100    // attr=mm:8d715759-d988-44c3-bda6-f82f351bff5e
00101    Array<NURBSLineBoundaryEntity> Points;
00102 
00103 
00104  private:
00105 
00106 //#UBLK-BEG-CLASSMEMB mm:d6621aa3-397b-4938-8730-fffa8758ea32
00107 //#UBLK-END-CLASSMEMB
00108 };
00109 
00110 //#UBLK-BEG-GLOBALH
00111 //#UBLK-END-GLOBALH
00112 
00113 
00114 #endif // _PARAMETRIC2DPOINTS_H_
 All Classes Files Functions Variables Typedefs Friends Defines