blob: bbee3740fc5b6fc16629d0912d4e80c6d1c01709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// File: DBRep_Face.cxx
// Created: Thu Jul 15 11:32:53 1993
// Author: Remi LEQUETTE
// <rle@nonox>
#include <DBRep_Face.ixx>
//=======================================================================
//function : DBRep_Face
//purpose :
//=======================================================================
DBRep_Face::DBRep_Face(const TopoDS_Face& F,
const Standard_Integer N,
const Draw_Color& C) :
myFace(F),
myColor(C),
myTypes(N ? 1 : 0,N),
myParams(N ? 1 : 0,3*N)
{
}
|