0023909: FPE in BSplSLib::RationalDerivative
[occt.git] / src / DrawResources / Grille.tcl
1 # Copyright (c) 1999-2012 OPEN CASCADE SAS
2 #
3 # The content of this file is subject to the Open CASCADE Technology Public
4 # License Version 6.5 (the "License"). You may not use the content of this file
5 # except in compliance with the License. Please obtain a copy of the License
6 # at http://www.opencascade.org and read it completely before using this file.
7 #
8 # The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9 # main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10 #
11 # The Original Code and all software distributed under the License is
12 # distributed on an "AS IS" basis, without warranty of any kind, and the
13 # Initial Developer hereby disclaims all such warranties, including without
14 # limitation, any warranties of merchantability, fitness for a particular
15 # purpose or non-infringement. Please see the License for the specific terms
16 # and conditions governing the rights and limitations under the License.
17
18 #
19 # this prints the image of the BOOLEAN GRIDS
20 #
21 proc print_test { test_letter grille_number } {
22     append test_file $test_letter 2 ;  
23     append image_directory "/home/wb/mdl/gti/work/GRILLE/" $grille_number
24     set grille_directory "/adv_20/BAG/test/GRILLES-BOOLEAN/"
25     append grille_directory $grille_number
26     append grille_name $grille_number
27     cd $grille_directory
28     uplevel #0 source $test_file  ;  
29     clear ; 
30     smallview AXON
31     uplevel #0 display b1 b2
32     uplevel #0 fit;
33     uplevel #0 clear
34     uplevel #0 vprops b1 x y z
35     uplevel #0 vprops b2 u v w
36     dtext -0.1 -0.1  -0.2 $test_letter ;
37     dtext -0.1 -0.1  -0.5 $grille_name
38     dtext u v w  solid2
39     dtext x y z  solid1
40     uplevel #0 compound b1 b2 c
41     uplevel #0 display c
42     uplevel #0 hlr rgn c
43     uplevel #0 hlr hid c
44     
45     if { [ file isdirectory $image_directory ] == 0 } {
46         uplevel #0 mkdir $image_directory 
47     }
48     cd $image_directory
49     hcolor 5 16 0
50     hcolor 12 11 0
51     hardcopy $test_letter.ps 
52 }
53
54 proc print_grille  { number } {
55     foreach letter { A B C D E F G H I J K L M N O P Q R S T U V W X } {
56         puts " *** test : $letter *** "
57         print_test $letter $number 
58     }
59 }