This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import tempfile | |
| import shlex | |
| import subprocess | |
| import sys | |
| vars = Variables() | |
| vars.Add(BoolVariable('SYNTAX', 'Set to 1 for a syntax check',0)) | |
| vars.Add(BoolVariable('DUMPENV', 'Set to 1 to dump environment',0)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| bvh_file = "Example1.bvh" | |
| def identifier(scanner, token): return "IDENT", token | |
| def operator(scanner, token): return "OPERATOR", token | |
| def digit(scanner, token): return "DIGIT", token | |
| def open_brace(scanner, token): return "OPEN_BRACE", token | |
| def close_brace(scanner, token): return "CLOSE_BRACE", token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bl_info = { | |
| "name": "Export Scene as Lua (.lua)", | |
| "author": "John Connors (ZabaQ)", | |
| "version": (0, 7), | |
| "blender": (2, 5, 4), | |
| "api": 33047, | |
| "location": "File > Export", | |
| "description": "Blender Scene To Lua (.lua)", | |
| "warning": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef H_LISP_OBJ | |
| #define H_LISP_OBJ | |
| #include <cassert> | |
| #include <ostream> | |
| #include <vector> | |
| #include <map> | |
| #include <string> | |
| #include <algorithm> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bl_info = { | |
| "name": "Dump Sexp (.lisp)", | |
| "author": "John Connors (ZabaQ)", | |
| "version": (0, 7), | |
| "blender": (2, 5, 4), | |
| "api": 33047, | |
| "location": "File > Export", | |
| "description": "Dump Blender Data To Sexp (.lisp)", | |
| "warning": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bl_info = { | |
| "name": "Dump Sexp (.lisp)", | |
| "author": "John Connors (ZabaQ)", | |
| "version": (0, 7), | |
| "blender": (2, 5, 4), | |
| "api": 33047, | |
| "location": "File > Export", | |
| "description": "Dump Blender Data To Sexp (.lisp)", | |
| "warning": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 7fc6632ed9c0febc058fee3c40ce47830aa40ed9 Mon Sep 17 00:00:00 2001 | |
| From: John Connors <johnc@yagc.ndo.co.uk> | |
| Date: Thu, 1 Sep 2011 12:46:31 +0100 | |
| Subject: [PATCH] Fixing keycode scan | |
| --- | |
| src/win32/win32.lisp | 18 +++++++++++++----- | |
| 1 files changed, 13 insertions(+), 5 deletions(-) | |
| diff --git a/src/win32/win32.lisp b/src/win32/win32.lisp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bpy | |
| import mathutils | |
| import types | |
| # transform python property to lisp keyword | |
| def lispify(s): | |
| if ((s == None) or (s[-1:]==']')): | |
| return None | |
| result = s.split('.')[-1:] | |
| result = ":" + result[0].upper() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;; w32shell.el --- Helpers for inferior shells on w32 | |
| ;; Copyright (C) 2005, 2006, 2007 by Lennart Borgman | |
| ;; | |
| ;; Author: Lennart Borgman | |
| ;; Created: Tue Nov 22 01:07:13 2005 | |
| ;; Version: 0.52 | |
| ;; Last-Updated: Fri May 18 10:58:41 2007 (7200 +0200) | |
| ;; Keywords: | |
| ;; Compatibility: Emacs 22 |