Skip to content

Instantly share code, notes, and snippets.

View andy-thomason's full-sized avatar

Andy Thomson andy-thomason

View GitHub Profile
@LukeMathWalker
LukeMathWalker / config.yml
Last active March 29, 2024 16:13
CircleCI - Rust setup
version: 2
jobs:
build-and-test:
docker:
- image: cimg/rust:1.69
environment:
# Fail the build if there are warnings
RUSTFLAGS: '-D warnings'
steps:
- checkout
@johnfredcee
johnfredcee / fbxcube.py
Created October 29, 2012 18:05
FBX Python SDK sample cube and cylinder
import fbx
import sys
import math
###############################################################
# Helper Function(s). #
###############################################################
def makeMaterial( pScene, materialName, **kwargs ):
global fbxManager