Pinned Loading
-
Export-Paper-Model-from-Blender
Export-Paper-Model-from-Blender PublicPython addon for creating paper models in Blender (development version)
-
Interactive board using a laser pointer
Interactive board using a laser pointer 1#!/usr/bin/python3
2import cv2
3import numpy
4import pyautogui
5 -
minimalistic script that creates a P...
minimalistic script that creates a PDF file 1def format_dict(obj, refs=tuple()):
2return "<< " + "".join("/{} {}\n".format(key, format_value(value, refs)) for (key, value) in obj.items()) + ">>"
34def format_value(value, refs=tuple()):
5if value in refs:
-
iterate over consecutive pairs
iterate over consecutive pairs 1def pairs(seq, cyclic=True):
2it = iter(seq)
3first = prev = next(it)
4for here in it:
5yield prev, here
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.