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 __future__ import division | |
import rhinoscriptsyntax as rs | |
__commandname__ = "tbr_seam" | |
def get_plane(c_0, c_1): | |
""" | |
Given two curves it gives you a normal vector to them | |
""" | |
pass |
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
import inspect | |
import ast | |
from textwrap import dedent | |
import tensorflow as tf | |
def escape_op_name(name): | |
""" | |
It has to match with "^[A-Za-z0-9.][A-Za-z0-9_.\\-/]*$" | |
""" |