0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / DsgPrs / DsgPrs_ShadedPlanePresentation.cxx
CommitLineData
b311480e 1// Created on: 1997-12-05
2// Created by: Robert COUBLANC
3// Copyright (c) 1997-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
b311480e 16
42cf5bc1 17
18#include <DsgPrs_ShadedPlanePresentation.hxx>
19#include <gp_Pnt.hxx>
20#include <Graphic3d_ArrayOfPolygons.hxx>
21#include <Graphic3d_Group.hxx>
7fd59977 22#include <Prs3d_LineAspect.hxx>
42cf5bc1 23#include <Prs3d_PlaneAspect.hxx>
24#include <Prs3d_Presentation.hxx>
25#include <Prs3d_Root.hxx>
7fd59977 26#include <Prs3d_ShadingAspect.hxx>
7fd59977 27
28//=======================================================================
29//function : Add
30//purpose :
31//=======================================================================
7fd59977 32void DsgPrs_ShadedPlanePresentation::Add(const Handle(Prs3d_Presentation)& aPresentation,
33 const Handle(Prs3d_Drawer)& aDrawer,
34 const gp_Pnt& aPt1,
35 const gp_Pnt& aPt2,
36 const gp_Pnt& aPt3)
37{
38 Handle(Graphic3d_Group) TheGroup = Prs3d_Root::CurrentGroup(aPresentation);
39 TheGroup->SetPrimitivesAspect(aDrawer->PlaneAspect()->EdgesAspect()->Aspect());
40 TheGroup->SetPrimitivesAspect(aDrawer->ShadingAspect()->Aspect());
b8ddfc2f 41
42 Handle(Graphic3d_ArrayOfPolygons) aPrims = new Graphic3d_ArrayOfPolygons(4);
43 aPrims->AddVertex(aPt1);
44 aPrims->AddVertex(aPt2);
45 aPrims->AddVertex(aPt3);
46 aPrims->AddVertex(aPt1);
47 Prs3d_Root::CurrentGroup(aPresentation)->AddPrimitiveArray(aPrims);
7fd59977 48}