Comment out pattern and curve v3 version

This commit is contained in:
Joey Wang
2023-03-22 12:18:07 +08:00
parent 398ba09106
commit 0fc34ae1ff
2 changed files with 16 additions and 16 deletions

View File

@@ -126,6 +126,11 @@ def delete_curve(name: str, cs: ChangeSet) -> ChangeSet:
# ;type: desc
# id x y
#--------------------------------------------------------------
#--------------------------------------------------------------
# [EPA3][IN][OUT]
# id type
# id x y
#--------------------------------------------------------------
def inp_in_curve(line: str) -> str:
@@ -149,12 +154,7 @@ def inp_out_curve(name: str) -> list[str]:
return lines
#--------------------------------------------------------------
# [EPA3][IN][OUT]
# id type
# id x y
#--------------------------------------------------------------
def inp_in_curve_v3(section: list[str]) -> ChangeSet:
'''def inp_in_curve_v3(section: list[str]) -> ChangeSet:
types = {}
curves: dict[str, list[dict[str, float]]] = {}
@@ -180,7 +180,7 @@ def inp_in_curve_v3(section: list[str]) -> ChangeSet:
cs.append(g_add_prefix | {'type': 'curve', 'id' : id, 'c_type': c_type, 'coords' : coords})
#print(descs)
return cs
return cs'''
def inp_out_curve_v3(name: str) -> list[str]: