Rsoft7.1破解版


RSOFT7.1破解版,一共三个包,这是第三个
资源截图
代码片段和文件信息
#!/usr/bin/env python

import sys traceback re

__HAS_TK = 0

def print_msg(msg):
    if __HAS_TK:
        tkMessageBox.showinfo(“Information“ msg)
        print msg
    else:
        print msg

def print_err(msg):
    if __HAS_TK:
        tkMessageBox.showerror(“ERROR“ msg)
        print msg
    else:
        print msg    
    
def exception ():
    
    “““ This function handles any exception derived from Exception and
    prints it out in a message box.  Code merrily stolen from the
    Thinking in Python site.“““
    
    try:
        type value tb = sys.exc_info ()
        info = traceback.extract_tb (tb)
        filename lineno function text = info[-1] # last line only
        print_err (“Exception: %s:%d: %s: %s (in %s)“ %
                   (filename lineno type.__name__ str (value) function))
    finally:
        type = value = tb = None # clean up


print_msg(“Testing if Tkinter is available... “)
try:
    import Tkinter
except ImportError:
    msg = “Sorry Tkinter does not appear to be available.

          “Please check your Python installation. “
          “It is possible that you have not installed Tcl/Tk and Tkinter.“
          “Please visit http://www.python.org for more details.“    
    print_err(msg)
    sys.exit(1)
else:
    import tkMessageBox
    print_msg(“OK - you have Tkinter“)
    print_msg(“TclVersion = %s TkVersion = %s“%(Tkinter.TclVersion
                                                 Tkinter.TkVersion))
    __HAS_TK = 1


def test_vtk_cone():
    import vtkpython

    msg = “““Testing a sample vtk program.  You should see a 300x300
    pixel window with a black background and with a magenta coloured
    Cone.  You can interact with the cone using the mouse.  To quit
    the test press q on the window.  If this test is successful then
    the basic vtkpython installation is OK.“““

    print_msg (re.sub(‘s+‘ ‘ ‘ msg))
    # create a rendering window and renderer
    ren = vtkpython.vtkRenderer()
    renWin = vtkpython.vtkRenderWindow()
    renWin.AddRenderer(ren)
    iren = vtkpython.vtkRenderWindowInteractor()
    iren.SetRenderWindow(renWin)

    # create an actor and give it cone geometry
    cone = vtkpython.vtkConeSource()
    cone.SetResolution(40)
    coneMapper = vtkpython.vtkPolyDataMapper()
    coneMapper.SetInput(cone.GetOutput())
    coneActor = vtkpython.vtkActor()
    coneActor.SetMapper(coneMapper)
    coneActor.GetProperty ().SetColor (0.5 0.5 1.0)    

    ren.AddActor(coneActor)
    # enable user interface interactor
    iren.Initialize()
    iren.Start()

def test_vtk_tk_render_widget(root):
    import vtkpython
    from vtkRenderWidget import vtkTkRenderWidget
    
    msg = “““Testing a sample vtk program that uses the
    vtkTkRenderWidget.  You should see a 300x300 pixel window with a
    black background and with a magenta coloured Cone.  You can
    interact with the cone using the mouse.  To quit the test press q
    on the window.  If this test is successful then

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    9493933  2006-08-03 11:00  RSOFT7helpandsolve.chm

     文件    3280334  2006-08-17 11:00  RSOFT7helpeamprop.chm

     文件    1057753  2006-08-01 11:00  RSOFT7helpdiffractmod.chm

     文件    1038276  2006-08-03 11:00  RSOFT7helpfemsim.chm

     文件    2244378  2006-08-21 11:00  RSOFT7helpfullwave.chm

     文件    1540878  2006-08-17 11:00  RSOFT7helpgratingmod.chm

     文件      83783  2006-08-21 11:00  RSOFT7helpinstall.chm

     文件    3686635  2006-04-05 13:48  RSOFT7helplasermod.chm

     文件    4007645  2006-10-25 11:00  RSOFT7helpmost.chm

     文件     725059  2005-06-24 11:00  RSOFT7help
sdatabrowser.chm

     文件    1507255  2006-08-03 11:00  RSOFT7help
softcad.chm

     文件      93361  2003-08-20 11:00  RSOFT7helpwinplot.chm

     文件     208896  2003-07-16 10:00  RSOFT7mpimpichmpdinmpd.exe

     文件      81920  2003-07-16 10:00  RSOFT7mpimpichmpdinmpiregister.exe

     文件        297  2003-07-16 10:00  RSOFT7mpimpich
eadme.txt

     文件       6845  2002-10-24 11:00  RSOFT7productsandsolveaxes.mod

     文件       4148  2004-11-18 08:52  RSOFT7productsandsolveaxestemplate.mod

     文件      12355  2003-10-29 09:00  RSOFT7productsandsolveandsheets.mod

     文件       6412  2002-10-24 11:00  RSOFT7productsandsolves2dvelfield.mod

     文件       4610  2002-10-24 11:00  RSOFT7productsandsolves3dsurfmap.mod

     文件       3820  2002-07-29 12:00  RSOFT7productsandsolvesfft.dat

     文件       1227  2005-10-13 10:00  RSOFT7productsandsolvesfft64.dat

     文件       4062  2002-10-24 11:00  RSOFT7productsandsolvesoutline.mod

     文件       5075  2005-12-12 13:48  RSOFT7productsandsolveisosurfopac25.mod

     文件       4600  2003-11-19 09:00  RSOFT7productsandsolvelightconesheet.mod

     文件       5195  2002-10-24 11:00  RSOFT7productsandsolvescalar3dtransparent.mod

     文件       4663  2004-11-18 08:52  RSOFT7productsandsolvesurfmapopac50.mod

     文件       4670  2005-08-25 07:50  RSOFT7productsandsolvesurfmapopac50cont.mod

     文件     386560  2000-06-11 11:00  RSOFT7productseamprop
outerANrouterSup.doc

     文件     427008  2001-10-07 11:00  RSOFT7productseamprop
outerAWG.doc

............此处省略1489个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)