From: bugmaster <> Date: Thu, 5 May 2011 09:46:31 +0000 (+0000) Subject: Update for OCCT 6.5.1. Changing number of arguments of V3d_Plane. X-Git-Tag: V6_5_1~37 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=26d9685bdc4cbe821fbb6a3036ba1fc689df1427;p=occt-copy.git Update for OCCT 6.5.1. Changing number of arguments of V3d_Plane. --- diff --git a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp b/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp index b4c658cfd8..70da435841 100755 --- a/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp +++ b/samples/mfc/standard/04_Viewer3d/src/Viewer3dView.cpp @@ -1123,8 +1123,8 @@ void CViewer3dView::OnModelclipping() Standard_Real A,B,C,D; tmpPln.Coefficients(A,B,C,D); //with these coefficients, creating a V3d_Plane - myPlane = new V3d_Plane( - GetDocument()->GetViewer(),A,B,C,D); + myPlane = new V3d_Plane(A,B,C,D); +// GetDocument()->GetViewer(),A,B,C,D); //creates the Face //NOTE : the face must be behind the clipping plane !! tmpPln = gp_Pln(gp_Pnt(0.1,0,0),gp_Dir(1,0,0));