0026605: Possible array out of bounds read in Extrema_GExtPC.gxx
[occt.git] / samples / tcl / DataExchangeDemo.tcl
CommitLineData
480bf81e 1# Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2#
ab91ab6f 3#Category: Demos
4#Title: Import and export
5#
480bf81e 6# This file is part of Open CASCADE Technology software library.
b311480e 7#
480bf81e 8# This library is free software; you can redistribute it and / or modify it
9# under the terms of the GNU Lesser General Public version 2.1 as published
10# by the Free Software Foundation, with special exception defined in the file
11# OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12# distribution for complete text of the license and disclaimer of any warranty.
b311480e 13#
480bf81e 14# Alternatively, this file may be used under the terms of Open CASCADE
15# commercial license or contractual agreement.
b311480e 16
03392dd2 17# Command to log a message to both command-line and dialog window
7fd59977 18proc sage { a} {
03392dd2 19 if { ![winfo exists .h ] } {
20 toplevel .h -bg azure3
21 wm title .h "INFO TEST HARNESS"
22 wm geometry .h +320+20
23 }
24 if { [winfo exists .h.m ] } {
25 set astring [.h.m cget -text]
26 set newstring "${astring} \n $a"
27 .h.m configure -text $newstring
28 puts $a
29 } else {
30 message .h.m -justify left -bg azure2 -width 13c -relief ridge -bd 4 -text $a
31 puts $a
32 }
33 pack .h.m
34 update
7fd59977 35}
36
03392dd2 37pload DATAEXCHANGE
7fd59977 38
39smallview
40if { [winfo exists .h ] } {
41 destroy .h
42}
43
03392dd2 44set ddir .
7fd59977 45if { [info exists env(CASROOT)] } {
03392dd2 46 set ddir [file join $env(CASROOT) data occ]
47}
48
49set tdir .
50if { [info exist env(TEMP)] } {
51 set tdir $env(TEMP)
7fd59977 52}
53
7fd59977 54sage " First, we retrieve a BREP File "
03392dd2 55sage " restore $ddir/wing.brep wing"
7fd59977 56sage " "
57datadir .
03392dd2 58restore $ddir/wing.brep wing
7fd59977 59disp wing
60fit
03392dd2 61
7fd59977 62sage "Generate the IGES File of this BREP"
03392dd2 63sage " brepiges wing $tdir/wing.igs"
7fd59977 64sage " "
03392dd2 65brepiges wing $tdir/wing.igs
7fd59977 66wait 3
03392dd2 67
68sage "we delete all DRAW data"
7fd59977 69sage ""
70dall
03392dd2 71fit
72wait 3
73
7fd59977 74sage "Restore this IGES File we have created "
03392dd2 75sage " igesbrep $tdir/wing.igs new *"
7fd59977 76sage ""
03392dd2 77igesbrep $tdir/wing.igs new *
7fd59977 78disp new
79fit
03392dd2 80
7fd59977 81puts "End IGES Elementary Test "
82sage " "
03392dd2 83file delete $tdir/wing.igs