Skip to content

Instantly share code, notes, and snippets.

@fullcontrol-xyz
fullcontrol-xyz / astm_d638_type_i_convex_simple.ipynb
Last active April 19, 2024 12:02
astm_d638_type_i_convex_simple.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / sphere.ipynb
Created November 2, 2023 21:21
Sphere.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / fullcontrol-lampshade.ipynb
Last active November 6, 2023 10:36
fullcontrol-lampshade.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / custom_start_end_gcode.ipynb
Last active June 11, 2024 08:14
custom_start_end_gcode.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / astm_d638_type_i_convex.ipynb
Last active August 28, 2023 19:49
astm_d638_type_i_convex.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / svg_demo.ipynb
Last active November 27, 2023 02:51
svg_demo.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / polar_offset_demo.ipynb
Last active May 1, 2023 13:02
polar_offset_demo.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
from math import radians, degrees
import fullcontrol as fc
import lab.fullcontrol as fclab
def offset_path_gist(points: list, offset: float, flip: bool = False) -> list:
if flip: offset = -offset
offset_lines = []
for i in range(len(points)-1):
line = [points[i], points[i+1]]
line_direction = fc.point_to_polar(line[1], line[0]).angle
@fullcontrol-xyz
fullcontrol-xyz / electronic_circuit_demo.ipynb
Last active November 27, 2023 02:52
electronic_circuit_demo.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fullcontrol-xyz
fullcontrol-xyz / lattice-spool.ipynb
Last active March 31, 2023 11:35
lattice-spool.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.