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
#has some tools for adding animator controls to bendy bones | |
# | |
#tested in blender 2.79 | |
#please modify/use at your own risk | |
import bpy | |
import logging | |
logger = logging.getLogger(__name__) | |
logging.basicConfig(level=logging.DEBUG) #without this info logs wouldnt show in console |
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
#include <iostream> | |
#include <random> | |
#include <algorithm> | |
#include <vector> | |
#include <cstdio> | |
#include <ctime> | |
#include <sstream> |
OlderNewer