A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 575
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/system/core/Exceptions.php:271)

Filename: view/rss.php

Line Number: 2

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/themes/geocities/views/view/rss.php
Line: 2
Function: header

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/core/MY_Loader.php
Line: 173
Function: include

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/core/MY_Loader.php
Line: 43
Function: _ci_load

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 579
Function: view

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Untitled - Stikked Untitled - Stikked http://geopaste.scratchbook.ch/ en Re: Untitled http://geopaste.scratchbook.ch/view/0bb0d357 Wed, 31 Oct 2018 20:29:05 +0100 Bitty Porcupine http://geopaste.scratchbook.ch/view/0bb0d357
  1. import sys
  2. sys.path.append('G:/Rigging/Paxton/node_world')
  3. import os
  4. import node_world.tests.test_create_node as tcn
  5. reload(tcn)
  6. controller = tcn.test(count=0)
  7.  
  8. transform_1 = controller.create_node('transform', name='transform_1')
  9. transform_2 = controller.create_node('transform', name='transform_2')
  10. transform_3 = controller.create_node('transform', name='transform_3')
  11.  
  12. transform_2.set_parent(transform_1)
  13.  
  14. transform_3.set_parent(transform_2)
  15.  
  16. transform_3.parent
  17.  
  18.  
  19. transform_1.set_name('shoulder')
  20. transform_2.set_name('elbow')
  21. transform_3.set_name('wrist')
  22.  
  23.  
  24. transform_1.matrix = (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
  25. transform_2.matrix = (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
  26. transform_3.matrix = (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
  27. transform_1.size = 1.9
  28. transform_1.index = 99
  29. plug_1 = transform_1.add_plug('plug_1')
  30.  
  31. plug_2 = transform_1.add_plug('plug_2')
  32. plug_3 = transform_1.add_plug('plug_3')
  33. plug_4 = transform_1.add_plug('plug_4')
  34. plug_1.connect_to(plug_2)
  35. plug_2.connect_to(plug_3)
  36. plug_3.connect_to(plug_4)
  37.  
  38. controller.serialize('%s_test.json' % os.path.expanduser('~'))
  39.  
]]>