Branch data Line data Source code
1 : : #include "OctreeIntersectionData.hpp"
2 : : #include "RefFace.hpp"
3 : : #include "CubitFacet.hpp"
4 : : #include "CubitPoint.hpp"
5 : :
6 : :
7 : :
8 : 0 : OctreeIntersectionData::OctreeIntersectionData(const CubitVector &normal, const CubitBoolean half_space, const double &len, RefFace *ptr_face, const CubitVector &closest_point_on_facet, CubitFacet *lp_facet)
9 : : {
10 : 0 : facetNormal = normal;
11 : 0 : halfSpace = half_space;
12 : 0 : length = len;
13 : 0 : refFace = ptr_face;
14 : 0 : intPoint = closest_point_on_facet;
15 : 0 : ptrFacet = lp_facet;
16 : 0 : merged = 0;
17 : 0 : }
18 : :
19 : 0 : OctreeIntersectionData::OctreeIntersectionData( CubitOctreeNode *ptr_white_node, CubitVector normal, CubitVector int_point, double len, RefFace *ptr_face)
20 : : {
21 : 0 : facetNormal = normal;
22 : 0 : intPoint = int_point;
23 : 0 : refFace = ptr_face;
24 : 0 : length = len;
25 : 0 : whiteNode = ptr_white_node;
26 [ + - ][ + - ]: 6540 : }
27 : :
28 : :
29 : : //EOF
|