This file contains 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
Process: blender [67154] | |
Path: /Applications/BLENDER28_AN_SV/*/blender.app/Contents/MacOS/blender | |
Identifier: org.blenderfoundation.blender | |
Version: 2.78 (2.78 2016-09-26, Blender Foundation) | |
Code Type: X86-64 (Native) | |
Parent Process: bash [67147] | |
Responsible: blender [67154] | |
User ID: 502 | |
Date/Time: 2016-10-27 11:08:29.133 +1100 |
This file contains 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
{ | |
"export_version": "0.062", | |
"framed_nodes": {}, | |
"groups": {}, | |
"nodes": { | |
"Circle": { | |
"bl_idname": "SvCircleNode", | |
"color": [ | |
0.0, | |
0.5, |
This file contains 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
{ | |
"export_version": "0.062", | |
"framed_nodes": {}, | |
"groups": {}, | |
"nodes": { | |
"Circle": { | |
"bl_idname": "SvCircleNode", | |
"color": [ | |
0.0, | |
0.5, |
This file contains 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
{ | |
"export_version": "0.062", | |
"framed_nodes": { | |
"Apply matrix to mesh": "Frame", | |
"Centers polygons 3": "Frame", | |
"Frame info": "Frame", | |
"Vector Math": "Frame", | |
"Vector in.002": "Frame" | |
}, | |
"groups": {}, |
This file contains 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
# INPUT | |
# - Object "Armature" | |
# OUTPUT | |
# - Object List (Pose Bone List) | |
# get bones | |
posebones = Armature.pose.bones | |
# create list of bones |
This file contains 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
# get armature | |
ob_arm = Object | |
# get bones | |
arm = bpy.data.armatures[Object.name] | |
editbones = arm.bones | |
# create list of bones | |
listofbones = [] |
This file contains 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
{ | |
"export_version": "0.062", | |
"framed_nodes": {}, | |
"groups": {}, | |
"nodes": { | |
"Circle": { | |
"bl_idname": "SvCircleNode", | |
"color": [ | |
0.0, | |
0.5, |
This file contains 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
{ | |
"export_version": "0.062", | |
"framed_nodes": {}, | |
"groups": {}, | |
"nodes": { | |
"2pt Spline": { | |
"bl_idname": "BasicSplineNode", | |
"color": [ | |
0.0, | |
0.5, |
This file contains 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
{ | |
"export_version": "0.062", | |
"framed_nodes": {}, | |
"groups": {}, | |
"nodes": { | |
"Adaptive Edges": { | |
"bl_idname": "SvAdaptiveEdgeNode", | |
"color": [ | |
0.6079999804496765, | |
0.6079999804496765, |
This file contains 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 math import sin, cos, radians, pi, sqrt | |
from mathutils import Vector, Euler | |
def sv_main(n=480, scale=1.0, a=1.0, b=1.0, m=3.0, n1=4.5, n2=10.0, n3=10.0): | |
in_sockets = [ | |
['s', 'Number of points', n], | |
['s', 'Scale Factor', scale], | |
['s', 'a', a], |