Skip to content

Instantly share code, notes, and snippets.

View jay3sh's full-sized avatar

Jayesh Salvi jay3sh

View GitHub Profile
@jay3sh
jay3sh / gist:3083080
Created July 10, 2012 12:54
Watch script to compile Coffeescript, Jade and Less.css
/*
* Tested on node 0.6, Ubuntu
*/
#!/usr/bin/node
COLOR_GREEN="\033[01;32m"
COLOR_RED="\033[01;31m"
COLOR_YELLOW="\033[01;33m"
COLOR_BLUE="\033[01;34m"
COLOR_NORMAL="\033[00m"
@jay3sh
jay3sh / sewmesh.py
Created December 8, 2011 07:21
Create Shape from raw face/vertex information
import sys
from OCC.gp import gp_Pnt
from OCC.BRep import BRep_Builder
from OCC.BRepBuilderAPI import BRepBuilderAPI_Sewing
from OCC.BRepBuilderAPI import BRepBuilderAPI_MakePolygon
from OCC.BRepBuilderAPI import BRepBuilderAPI_MakeFace
from OCC.BRepBuilderAPI import BRepBuilderAPI_MakeVertex
from OCC.TopoDS import TopoDS_Compound
from OCC import StlAPI
@jay3sh
jay3sh / text-example.py
Created November 29, 2011 14:57
Generate solids in shape of text
#!/usr/bin/python
import sys
import math
sys.path.append('./src')
from cadmium import *
stlfname = sys.argv[1]
@jay3sh
jay3sh / webworker-debug.js
Created August 16, 2011 15:22
WebWorker postMessage for debug
//
// In the Main thread
//
var worker = new Worker('/path/of/webworker/code.js')
worker.onmessage = function (e) {
var result = JSON.parse(e.data);
if(result.type == 'debug') {
console.log(result.msg);
} else if(result.type == 'response') {
@jay3sh
jay3sh / webworker-stacktrace.js
Created August 16, 2011 15:27
WebWorker stacktrace for debug
//
// In the WebWorker
//
function debug(msg) {
postMessage(JSON.stringify({type:'debug',msg:msg}));
}
onmessage = function (e) {
try {
@jay3sh
jay3sh / shear-test.py
Created June 27, 2011 04:49
PythonOCC Shear transform testing
from OCC.BRepPrimAPI import *
from OCC.BRepBuilderAPI import *
from OCC.gp import *
from OCC import StlAPI
from OCC.Precision import *
from OCC.Utils.Topology import *
from OCC.TopoDS import *
from OCC.TopAbs import *
from OCC.BRepMesh import *
from OCC.BRep import *
# Copyright (c) 2010, Philip Plante of EndlessPaths.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
@jay3sh
jay3sh / menger-sponge.py
Created June 12, 2011 09:55
Menger Sponge generator
#!/usr/bin/python
from cadmium import *
LIMIT = 9
def count_zeroes(lst):
return sum(1 for x in lst if x == 0)
def menger_void(k):
@jay3sh
jay3sh / abstract.py
Created June 11, 2011 07:07
Abstract art
#!/usr/bin/python
from cadmium import *
b0 = Box(x=4,y=4,z=4, center=True)
s0 = Sphere(radius=2.5)
(s0 - b0).toSTL('abstract.stl')
@jay3sh
jay3sh / chainwheel.py
Created June 11, 2011 06:59
Caterpillar Chain Wheel
#!/usr/bin/python
#
# Caterpillar Chain Wheel
# derived from OpenSCAD script from http://www.thingiverse.com/thing:8877
#
import sys
from math import *
from cadmium import *