Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

import bpy
from mathutils import Vector
# weight
w = 1.0000
#replace with [(x,y,z), (x,y,z), (x,y,z)]
listOfVectors = [(-0.1277, 4.0407, -1.0315),(-0.0555, 4.0030, -1.0374),(0.0176, 3.9602, -1.0428),(0.0918, 3.9126, -1.0476),(0.1669, 3.8607, -1.0519),(0.2427, 3.8048, -1.0557),(0.3193, 3.7456, -1.0589),(0.3965, 3.6832, -1.0618),(0.4742, 3.6183, -1.0642),(0.5524, 3.5512, -1.0662),(0.6310, 3.4823, -1.0679),(0.7098, 3.4120, -1.0692),(0.7888, 3.3409, -1.0702),(0.8679, 3.2693, -1.0709),(0.9470, 3.1975, -1.0714),(1.0259, 3.1258, -1.0717),(1.1044, 3.0542, -1.0716),(1.1821, 2.9827, -1.0714),(1.2589, 2.9115, -1.0708),(1.3344, 2.8404, -1.0699),(1.4085, 2.7696, -1.0688),(1.4808, 2.6992, -1.0674),(1.5512, 2.6291, -1.0656),(1.6193, 2.5595, -1.0636),(1.6850, 2.4904, -1.0612),(1.7479, 2.4217, -1.0585),(1.8079, 2.3537, -1.0554),(1.8647, 2.2862, -1.0520),(1.9184, 2.2194, -1.0483),(1.9691, 2.1531, -1.0443),(2.0173, 2.0873, -1.0401),(2.0631, 2.0220, -1.0357),(2.1067, 1.9571, -1.0312),(2.1485, 1.8926, -1.0266),(2.1887, 1
license: mit
@baronwatts
baronwatts / .block
Last active July 28, 2017 15:13
ScrollyTelling Example
license: mit
@baronwatts
baronwatts / webpack.config.js
Created November 9, 2016 18:40 — forked from learncodeacademy/webpack.config.js
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"