Changesets: occt

master e958a649

2017-07-03 09:27:08

kgv


Committer: bugmaster Details Diff
0028876: Tests, Image_Diff - the image difference is unavailable for test case bugs vis bug28205_1

Quantity_ColorRGBA - added method SetValues().
Image_PixMap::PixelColor() now returns Quantity_ColorRGBA instead of Quantity_Color.
Image_PixMap::SetPixelColor() now takes Quantity_ColorRGBA instead of NCollection_Vec4<float>.

Image_Diff has been improved to support Image_Format_Gray.
Image_Diff::SaveDiffImage() now saves image difference
in Image_Format_Gray format to reduce size of image file.

Image_Diff now uses TColStd_HPackedMapOfInteger instead of
TColStd_MapOfInteger with manual memory allocation.
Affected Issues
0028876
mod - dox/dev_guides/upgrade/upgrade.md Diff File
mod - src/Graphic3d/Graphic3d_MarkerImage.cxx Diff File
mod - src/Image/Image_AlienPixMap.cxx Diff File
mod - src/Image/Image_Diff.cxx Diff File
mod - src/Image/Image_Diff.hxx Diff File
mod - src/Image/Image_PixMap.cxx Diff File
mod - src/Image/Image_PixMap.hxx Diff File
mod - src/NCollection/NCollection_Vec2.hxx Diff File
mod - src/NCollection/NCollection_Vec3.hxx Diff File
mod - src/NCollection/NCollection_Vec4.hxx Diff File
mod - src/Quantity/Quantity_ColorRGBA.hxx Diff File
mod - src/StdSelect/StdSelect_ViewerSelector3d.cxx Diff File
mod - src/ViewerTest/ViewerTest_ViewerCommands.cxx Diff File

master a07cff69

2017-07-03 09:19:55

emv


Committer: bugmaster Details Diff
0028883: Invalid result of Section operation
add - tests/bugs/modalg_7/bug28883_1 Diff File
add - tests/bugs/modalg_7/bug28883_2 Diff File

master 896faa72

2017-06-29 17:17:39

abv


Committer: bugmaster Details Diff
0028417: Using PRECOMPILED HEADER to speed up compilation time

Use of Cotire tool is introduced for acceleration of CMake builds, by usage of precompiled headers.
CMake option BUILD_USE_PCH is added to enable / disable use of precompiled headers

When precompiled headers are used, additional compiler macros are defined globally in the build system to avoid problems due to different order of included files:
- NOMINMAX is defined on Windows to prevent defining "min" and "max" as macros by windows.h
- STRSAFE_NO_DEPRECATE and _SCL_SECURE_NO_WARNINGS are defined on Windows to prevent declaring functions of standard C library as deprecated by #pragma, and other warnings in system headers
- GL_GLEXT_LEGACY and GLX_GLEXT_LEGACY are defined to ensure that only OCCT's own glext.h is used
- __STDC_FORMAT_MACROS is defined to have standard C print format macros always defined

Code is corrected to avoid conflicts with system headers and in case of compiling together as unity builds (partially):
- Some locally defined variables in TKV3d, TKHLR are renamed to be unique
- Duplicated definitions of macros and global functions are eliminated in TKSTEP
- Useless header WNT_UInt.hxx is removed
- Usage of local variables conflicting with X11 macro is avoided in Draw_Viewer.cxx
- Local variables in AIS_ConcentricRelation.cxx are renamed to avoid conflict with macros defined in windows.h
- HXX files containing code are renamed to PXX or merged with corresponding CXX files.

IVtkTools classes are corrected to avoid compiler warnings disabled in non-PCH builds by inclusion of VTK headers.

Useless pragmas disabling warnings on MSVC are removed
Affected Issues
0028417
add - adm/cmake/cotire.cmake Diff File
mod - adm/cmake/occt_toolkit.cmake Diff File
mod - adm/cmake/vardescr.cmake Diff File
mod - CMakeLists.txt Diff File
mod - dox/dev_guides/upgrade/upgrade.md Diff File
mod - dox/overview/overview.md Diff File
mod - src/AIS/AIS_ConcentricRelation.cxx Diff File
mod - src/AIS/AIS_InteractiveContext_1.cxx Diff File
mod - src/AIS/AIS_LocalContext_1.cxx Diff File
mod - src/BOPDS/BOPDS_PassKey.cxx Diff File
mod - src/BOPDS/BOPDS_PaveBlock.cxx Diff File
mod - src/DDF/DDF_IOStream.hxx Diff File
mod - src/DPrsStd/DPrsStd.cxx Diff File
mod - src/Draw/Draw_Viewer.cxx Diff File
mod - src/Geom/Geom_Ellipse.cxx Diff File
mod - src/gp/gp_GTrsf.hxx Diff File
mod - src/gp/gp_Trsf.hxx Diff File
mod - src/Graphic3d/Graphic3d_Texture1D.cxx Diff File
mod - src/Graphic3d/Graphic3d_Texture2D.cxx Diff File
mod - src/Graphic3d/Graphic3d_TextureEnv.cxx Diff File
mod - src/HLRAlgo/HLRAlgo_PolyData.cxx Diff File
mod - src/HLRAlgo/HLRAlgo_PolyInternalData.cxx Diff File
mod - src/HLRBRep/HLRBRep_InternalAlgo.cxx Diff File
mod - src/IGESSelect/IGESSelect_IGESTypeForm.hxx Diff File
mod - src/IntTools/IntTools.cxx Diff File
mod - src/IntTools/IntTools_EdgeFace.cxx Diff File
mod - src/IVtkDraw/IVtkDraw.cxx Diff File
mod - src/IVtkDraw/IVtkDraw_Interactor.cxx Diff File
mod - src/IVtkTools/IVtkTools_DisplayModeFilter.hxx Diff File
mod - src/IVtkTools/IVtkTools_ShapeDataSource.hxx Diff File
mod - src/IVtkTools/IVtkTools_ShapeObject.hxx Diff File
mod - src/IVtkTools/IVtkTools_ShapePicker.hxx Diff File
mod - src/IVtkTools/IVtkTools_SubPolyDataFilter.cxx Diff File
mod - src/IVtkTools/IVtkTools_SubPolyDataFilter.hxx Diff File
mod - src/Message/Message_ProgressScale.cxx Diff File
mod - src/OpenGl/OpenGl_Context_1.mm Diff File
mod - src/OpenGl/OpenGl_Window_1.mm Diff File
mod - src/OSD/OSD_Chronometer.cxx Diff File
mod - src/OSD/OSD_DirectoryIterator.cxx Diff File
mod - src/OSD/OSD_Disk.cxx Diff File
mod - src/OSD/OSD_Environment.cxx Diff File
mod - src/OSD/OSD_Error.cxx Diff File
mod - src/OSD/OSD_FileIterator.cxx Diff File
mod - src/OSD/OSD_FileNode.cxx Diff File
mod - src/OSD/OSD_Host.cxx Diff File
mod - src/OSD/OSD_signal.cxx Diff File
mod - src/OSD/OSD_Timer.cxx Diff File
mod - src/PLib/FILES Diff File
mod - src/PLib/PLib_JacobiPolynomial.cxx Diff File
mod - src/Poly/Poly_CoherentNode.cxx Diff File
mod - src/QANCollection/QANCollection_Stl.cxx Diff File
mod - src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx Diff File
mod - src/SelectMgr/SelectMgr_SelectableObjectSet.cxx Diff File
mod - src/SelectMgr/SelectMgr_ViewerSelector.cxx Diff File
mod - src/Standard/Standard_OutOfMemory.cxx Diff File
mod - src/StdDrivers/StdDrivers.cxx Diff File
mod - src/StdLDrivers/StdLDrivers.cxx Diff File
mod - src/STEPCAFControl/STEPCAFControl_Reader.cxx Diff File
mod - src/StepDimTol/StepDimTol_ToleranceZone.hxx Diff File
mod - src/TNaming/TNaming_Naming.cxx Diff File
mod - src/TNaming/TNaming_NCollections.hxx Diff File
mod - src/TObjDRAW/TObjDRAW.cxx Diff File
mod - src/TopOpeBRep/TopOpeBRep_FacesFiller.cxx Diff File
mod - src/TopOpeBRepBuild/FILES Diff File
mod - src/TopOpeBRepBuild/TopOpeBRepBuild_Builder.cxx Diff File
mod - src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.cxx Diff File
rm - src/TopOpeBRepBuild/TopOpeBRepBuild_Fill.pxx Diff File
mod - src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.cxx Diff File
rm - src/TopOpeBRepBuild/TopOpeBRepBuild_SplitEdge.hxx Diff File
rm - src/TopOpeBRepBuild/TopOpeBRepBuild_SplitFace.hxx Diff File
rm - src/TopOpeBRepBuild/TopOpeBRepBuild_SplitShapes.hxx Diff File
rm - src/TopOpeBRepBuild/TopOpeBRepBuild_SplitSolid.pxx Diff File
mod - src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.cxx Diff File
mod - src/TopOpeBRepTool/FILES Diff File
rm - src/TopOpeBRepTool/TopOpeBRepTool_closing.cxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_CORRISO.cxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_define.hxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_faulty.cxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_PURGE.hxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_SC.hxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.cxx Diff File
mod - src/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.hxx Diff File
mod - src/TopTrans/TopTrans_SurfaceTransition.cxx Diff File
mod - src/VrmlData/VrmlData_Geometry.cxx Diff File
mod - src/VrmlData/VrmlData_ShapeConvert.cxx Diff File
mod - src/WNT/FILES Diff File
rm - src/WNT/WNT_Uint.hxx Diff File
mod - src/WNT/WNT_WClass.cxx Diff File
mod - src/WNT/WNT_WClass.hxx Diff File
mod - src/XSDRAWSTLVRML/XSDRAWSTLVRML.cxx Diff File

master 030ba648

2017-06-29 14:51:43

szy


Committer: bugmaster Details Diff
0028862: Unification of empty labels saving procedure.

Added a possibility to save empty labels to a persistent document in case of need.
Affected Issues
0028862
mod - src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx Diff File
mod - src/DDocStd/DDocStd_ApplicationCommands.cxx Diff File
mod - src/TDocStd/TDocStd_Document.cxx Diff File
mod - src/TDocStd/TDocStd_Document.hxx Diff File
mod - src/TDocStd/TDocStd_Document.lxx Diff File
mod - src/XmlMDF/XmlMDF.cxx Diff File
add - tests/caf/basic/Y1 Diff File
add - tests/caf/basic/Y2 Diff File

master b721c02a

2017-06-29 08:46:35

apv


Committer: bugmaster Details Diff
Test for 0021414: GeomAPI_IntCS fails to find all intersections between line and surface of revolution
add - tests/bugs/modalg_7/bug21414 Diff File

master 6916e174

2017-06-28 15:03:25

apv


Committer: bugmaster Details Diff
Test for 0021413: Pipe fails - very sensitive to spine parameterization
add - tests/bugs/modalg_7/bug21413 Diff File

master 6319b55b

2017-06-28 13:10:30

anv


Committer: bugmaster Details Diff
0028871: Various problems in SAT export
mod - src/ShapeAnalysis/ShapeAnalysis_Curve.cxx Diff File
add - tests/bugs/step/bug28871 Diff File

master a2a6c872

2017-06-28 07:36:59

kgv


Committer: bugmaster Details Diff
0028877: Documentation - fix unclosed tag in coding_rules.md Affected Issues
0028877
mod - dox/dev_guides/contribution/coding_rules.md Diff File

master a3762901

2017-06-27 11:45:35

apv


Committer: bugmaster Details Diff
Test for 0016740: XCAFDoc_ShapeMapTool is not restored
add - tests/bugs/xde/bug16740 Diff File

master b27ab03d

2017-06-27 08:22:31

duv


Committer: bugmaster Details Diff
0028762: Visualization, Ray tracing - Implement depth-of-field effect

Graphic3d_RenderingParams - introduced new parameters CameraFocalPlaneDist and CameraApertureRadius managing DOF effect.
TKOpenGl - added new ray generation logic to RaytraceBase.fs.
vrenderparams command - added -focal and -aperture parameters.
OpenGl_View.hxx - function for ray generating was split into two functions (ray tracing and path tracing).
OpenGl_View_Raytrace.cxx - fixed interaction between adaptive sampling and stereo camera
Affected Issues
0028762
mod - src/Graphic3d/Graphic3d_RenderingParams.hxx Diff File
mod - src/OpenGl/OpenGl_View.cxx Diff File
mod - src/OpenGl/OpenGl_View.hxx Diff File
mod - src/OpenGl/OpenGl_View_Raytrace.cxx Diff File
mod - src/Shaders/RaytraceBase.fs Diff File
mod - src/Shaders/Shaders_RaytraceBase_fs.pxx Diff File
mod - src/ViewerTest/ViewerTest_ViewerCommands.cxx Diff File
add - tests/v3d/raytrace/dof_mono Diff File
add - tests/v3d/raytrace/dof_stereo Diff File

master 85220a9c

2017-06-26 15:34:15

apv


Committer: bugmaster Details Diff
Test for 0017128: ShapeFix WireIntersector make bad shape
add - tests/bugs/heal/bug17128 Diff File

master f2f4e84d

2017-06-26 13:40:15

vsv


Committer: bugmaster Details Diff
0025464: Visualization - provide package for Volume Rendering
mod - src/OpenGl/OpenGl_TextureBufferArb.hxx Diff File

master fe4f17f0

2017-06-26 12:41:09

mpv


Committer: bugmaster Details Diff
0028853: TDF_AttributeIterator should give handles instead of pointers

Make "Value" method of the iterator return Handle (instead of pointer) to unify public interfaces.
Affected Issues
0028853
mod - src/TDF/TDF_AttributeIterator.hxx Diff File
mod - src/TDF/TDF_Data.cxx Diff File

master 68223adb

2017-06-23 08:13:47

vro


Committer: bugmaster Details Diff
0028842: Attribute TNaming_NamedShape is not restored from .sgd document
mod - src/ShapePersistent/ShapePersistent_BRep.cxx Diff File
add - tests/xml/data/ocaf/D7 Diff File

master 66cfcd0f

2017-06-22 19:43:38

abv


Committer: bugmaster Details Diff
0028829: dsetsignal command does not work on Linux properly

OSD::SetSignal() is corrected to unset FPE exceptions on Linux if called with False argument
mod - src/OSD/OSD_signal.cxx Diff File
mod - src/QABugs/QABugs_20.cxx Diff File
add - tests/bugs/fclasses/bug28829 Diff File

master 21b1980f

2017-06-20 20:38:35

abv


Committer: bugmaster Details Diff
0028362: Documentation - Doxygen warnings

Formatting of user guide is corrected (code block properly closed)
Affected Issues
0028362
mod - dox/user_guides/draw_test_harness/draw_test_harness.md Diff File

master c1a688e9

2017-06-20 13:47:48

mpv


Committer: bugmaster Details Diff
0028852: TDF_AttributeIterator should not be marked as "handle with care"

Warning lines have been removed.
Added a comment about usage of this class.
Affected Issues
0028852
mod - src/TDF/TDF_AttributeIterator.hxx Diff File

master 6ae07908

2017-06-19 13:37:39

apv

Details Diff
0028841: testdiff DRAW command hangs or crash with arithmetical exception Affected Issues
0028841
mod - src/DrawResources/TestCommands.tcl Diff File

master 1aa738dd

2017-06-19 08:55:26

BenjaminBihler


Committer: bugmaster Details Diff
0028854: The documentation should state where handle reference counting happens

The comment to class opencascade::handle<> in Standard_Handle.hxx now explains better the features differing it from std::shared_ptr<>.
Affected Issues
0028854
mod - src/Standard/Standard_Handle.hxx Diff File

master e9a7ec7a

2017-06-16 09:21:57

nbv


Committer: bugmaster Details Diff
0028849: [Regression to 7.1.0] Exception in Boolean operation

The reason of exception has been eliminated.
mod - src/IntPatch/IntPatch_ImpImpIntersection_4.gxx Diff File
add - tests/bugs/modalg_7/bug28849 Diff File

master df119b4e

2017-06-16 05:59:21

emv


Committer: bugmaster Details Diff
0028844: Regression vs 7.1.0: Exception is raised by the solid classification algorithm

Protection from normalization of the null vector.

Test cases for the issue.
mod - src/BRepClass3d/BRepClass3d_SolidExplorer.cxx Diff File
mod - src/IntCurve/IntCurve_IntCurveCurveGen.gxx Diff File
mod - src/IntCurveSurface/IntCurveSurface_Polyhedron.gxx Diff File
mod - src/Intf/Intf.cxx Diff File
mod - src/IntPatch/IntPatch_Polyhedron.cxx Diff File
add - tests/bugs/modalg_7/bug28844_1 Diff File
add - tests/bugs/modalg_7/bug28844_2 Diff File
add - tests/bugs/modalg_7/bug28844_3 Diff File

master 35dced1c

2017-06-15 08:53:29

ifv


Committer: bugmaster Details Diff
0028856: Extrema between two curves gives wrong result

Treatment for large Lipschitz constant is added
Test case is added
mod - src/Extrema/Extrema_GenExtCC.gxx Diff File
mod - src/math/math_GlobOptMin.cxx Diff File
add - tests/bugs/modalg_7/bug28856 Diff File

master e3d02d1f

2017-06-14 15:45:38

mkv


Committer: bugmaster Details Diff
0028843: Replacing @ symbol in v3d glsl tiles test case Affected Issues
0028843
mod - tests/v3d/glsl/msaa Diff File
mod - tests/v3d/glsl/tiles Diff File

master 4201bf79

2017-06-14 13:42:49

apv


Committer: bugmaster Details Diff
0023575: Bounding box for a planar edge has non-zero dimension in direction orthogonal to an edge plane
# Test case bugs/moddata_3/bug23575 creation
Affected Issues
0023575
add - tests/bugs/moddata_3/bug23575 Diff File

master 1d54b807

2017-06-14 13:28:15

jgv


Committer: apn Details Diff
0028828: Modeling Algorithms - New functionalities of BRepFilletAPI_MakeChamfer algorithm

Two new functionalities have been added in BRepFilletAPI_MakeChamfer:
- constant throat (the section of chamfer is isosceles triangle, its height is constant in all sections - this is the "throat" of the weld);
- constant throat with penetration(the section of chamfer is right-angled triangle, the first of two surfaces (where is the top of the chamfer) is virtually moved inside the solid by offset operation, the apex of the section is on the intersection curve between moved surface and second surface, right angle is at the top of the chamfer, the length of the leg from apex to top is constant - this is the "throat" of the weld).

- New abstract classes BlendFunc_GenChamfer and BlendFunc_GenChamfInv have been added;
- Class BlendFunc_Chamfer is now descended from BlendFunc_GenChamfer, class BlendFunc_ChamfInv is now descended from BlendFunc_GenChamfInv.
- New class BlendFunc_ConstThroat is descended from BlendFunc_GenChamfer, new class BlendFund_ConstThroatInv is descended from BlendFunc_GenChamfInv.
- New class BlendFunc_ConstThroatWithPenetration is descended from BlendFunc_GenChamfer, new class BlendFund_ConstThroatWithPenetrationInv is descended from BlendFunc_GenChamfInv.
- Class ChFi3d_ChBuilder has now mode of chamfer that can be ClassicChamfer, ConstThroatChamfer and ConstThroatWithPenetrationChamfer.
- Two new DRAW Test Harness commands "chamf_throat" ant "chamf_throat_with_penetration" have been added for the second mode of ChBuilder.
- The interface of DRAW Test Harness command "chamf" changed for symmetric case.
mod - dox/dev_guides/upgrade/upgrade.md Diff File
mod - src/Blend/Blend_AppFunction.hxx Diff File
mod - src/Blend/Blend_Function.hxx Diff File
mod - src/Blend/Blend_Walking_4.gxx Diff File
mod - src/BlendFunc/BlendFunc_Chamfer.cxx Diff File
mod - src/BlendFunc/BlendFunc_Chamfer.hxx Diff File
mod - src/BlendFunc/BlendFunc_ChamfInv.cxx Diff File
mod - src/BlendFunc/BlendFunc_ChamfInv.hxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroat.cxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroat.hxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroatInv.cxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroatInv.hxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroatWithPenetration.cxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroatWithPenetration.hxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.cxx Diff File
add - src/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.hxx Diff File
add - src/BlendFunc/BlendFunc_GenChamfer.cxx Diff File
add - src/BlendFunc/BlendFunc_GenChamfer.hxx Diff File
add - src/BlendFunc/BlendFunc_GenChamfInv.cxx Diff File
add - src/BlendFunc/BlendFunc_GenChamfInv.hxx Diff File
mod - src/BlendFunc/FILES Diff File
add - src/BRepBlend/BRepBlend_ConstThroat.hxx Diff File
add - src/BRepBlend/BRepBlend_ConstThroatInv.hxx Diff File
add - src/BRepBlend/BRepBlend_ConstThroatWithPenetration.hxx Diff File
add - src/BRepBlend/BRepBlend_ConstThroatWithPenetrationInv.hxx Diff File
mod - src/BRepBlend/FILES Diff File
mod - src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx Diff File
mod - src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx Diff File
mod - src/BRepTest/BRepTest_ChamferCommands.cxx Diff File
mod - src/ChFi3d/ChFi3d_Builder.hxx Diff File
mod - src/ChFi3d/ChFi3d_Builder_0.cxx Diff File
mod - src/ChFi3d/ChFi3d_Builder_0.hxx Diff File
mod - src/ChFi3d/ChFi3d_Builder_1.cxx Diff File
mod - src/ChFi3d/ChFi3d_Builder_2.cxx Diff File
mod - src/ChFi3d/ChFi3d_Builder_6.cxx Diff File
mod - src/ChFi3d/ChFi3d_ChBuilder.cxx Diff File
mod - src/ChFi3d/ChFi3d_ChBuilder.hxx Diff File
mod - src/ChFi3d/ChFi3d_FilBuilder.cxx Diff File
add - src/ChFiDS/ChFiDS_ChamfMode.hxx Diff File
mod - src/ChFiDS/ChFiDS_ChamfSpine.cxx Diff File
mod - src/ChFiDS/ChFiDS_ChamfSpine.hxx Diff File
mod - src/ChFiDS/ChFiDS_Spine.cxx Diff File
mod - src/ChFiDS/ChFiDS_Spine.hxx Diff File
mod - src/ChFiDS/ChFiDS_Spine.lxx Diff File
mod - src/ChFiDS/FILES Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData.cxx Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.hxx Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.hxx Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.cxx Diff File
mod - src/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.hxx Diff File
mod - src/FilletSurf/FilletSurf_InternalBuilder.cxx Diff File
mod - src/IntWalk/IntWalk_PWalking.cxx Diff File
mod - src/IntWalk/IntWalk_PWalking.hxx Diff File
mod - tests/bugs/modalg_2/bug20222 Diff File
mod - tests/bugs/modalg_5/bug25199 Diff File
mod - tests/bugs/modalg_6/bug28261 Diff File
add - tests/bugs/modalg_7/bug27711_1 Diff File
add - tests/bugs/modalg_7/bug27711_3 Diff File
add - tests/bugs/modalg_7/bug28828_1 Diff File
add - tests/bugs/modalg_7/bug28828_10 Diff File
add - tests/bugs/modalg_7/bug28828_11 Diff File
add - tests/bugs/modalg_7/bug28828_12 Diff File
add - tests/bugs/modalg_7/bug28828_13 Diff File
add - tests/bugs/modalg_7/bug28828_14 Diff File
add - tests/bugs/modalg_7/bug28828_15 Diff File
add - tests/bugs/modalg_7/bug28828_16 Diff File
add - tests/bugs/modalg_7/bug28828_17 Diff File
add - tests/bugs/modalg_7/bug28828_18 Diff File
add - tests/bugs/modalg_7/bug28828_19 Diff File
add - tests/bugs/modalg_7/bug28828_2 Diff File
add - tests/bugs/modalg_7/bug28828_20 Diff File
add - tests/bugs/modalg_7/bug28828_21 Diff File
add - tests/bugs/modalg_7/bug28828_3 Diff File
add - tests/bugs/modalg_7/bug28828_4 Diff File
add - tests/bugs/modalg_7/bug28828_6 Diff File
add - tests/bugs/modalg_7/bug28828_7 Diff File
add - tests/bugs/modalg_7/bug28828_8 Diff File
add - tests/bugs/modalg_7/bug28828_9 Diff File
mod - tests/chamfer/begin Diff File
mod - tests/chamfer/end Diff File
 First  Prev  1 2 3 ... 30 ... 60 ... 90 ... 92 93 94 95 96 97 98 ... 120 ... 150 ... 180 ... 210 ... 240 ... 254 255 256  Next  Last