1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

0026561: Porting CSharp wrapper to OCCT 7.0.0

Added missing Standard_EXPORT for public methods; declaration of unimplemented method removed.

Restoring some changes made for #26788 but omitted in its commit.

OpenGl_View::ReadDepths() - drop obsolete and broken method; V3d_View::ToPixMap() should be used instead
This commit is contained in:
abv
2015-10-23 07:20:32 +03:00
committed by bugmaster
parent df573a26ed
commit f1a70360a7
10 changed files with 15 additions and 96 deletions

View File

@@ -2095,8 +2095,8 @@ void BRepFill_Evolved::AddTopAndBottom(BRepTools_Quilt& Glue)
gp_Pnt PC;
gp_Vec VC;
C.D1(u,PC,VC);
gp_Vec PPC(P,PC);
gp_Vec Prod = PPC.Crossed(VC);
gp_Vec aPPC(P,PC);
gp_Vec Prod = aPPC.Crossed(VC);
if (IsOut) {
ToReverse = Prod.Z() < 0.;
}