File: bug28640

package info (click to toggle)
opencascade 7.9.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 301,924 kB
  • sloc: cpp: 1,523,264; tcl: 10,159; cs: 5,173; java: 1,554; sh: 1,342; ansic: 827; xml: 699; makefile: 30; javascript: 22
file content (37 lines) | stat: -rwxr-xr-x 845 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
puts "================"
puts "0028640: Modeling Algorithms - BRepBuilderAPI_Transform builds invalid shape"
puts "================"
puts ""

# Analyze triangulation after mirroring shape 
restore [locate_data_file bug28640_origin_copy.brep] a
tmirror a 0 0 0 1 0 0

vinit
vsetdispmode 1
vdisplay a
vfront
vfit
checkview -screenshot -3d -path ${imagedir}/${test_image}-mirror-3d_1.png

if {[tricheck a] != ""} {
	puts "Error: invalid triangulation"
}

# Fix the shape and check its validity after mirroring
restore [locate_data_file bug28640_origin_copy.brep] a
fixshape a a
checkshape a
tmirror a 0 0 0 1 0 0
checkshape a

# Check triangulation of healed and mirrored shape 
vclear
vdisplay a
vfront
vfit
checkview -screenshot -3d -path ${imagedir}/${test_image}-mirror-3d_2.png

if {[tricheck a] != ""} {
	puts "Error: invalid triangulation"
}