Skip to content

Commit

Permalink
add is_crossing parameter to edges
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Nov 8, 2024
1 parent 7db90ac commit ef27d62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/schematic/schematic_trace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface SchematicTraceEdge {
x: number
y: number
}
is_junction?: boolean
is_crossing?: boolean
from_schematic_port_id?: string
to_schematic_port_id?: string
}
Expand All @@ -37,7 +37,7 @@ export const schematic_trace = z.object({
x: z.number(),
y: z.number(),
}),
is_junction: z.boolean().optional(),
is_crossing: z.boolean().optional(),
from_schematic_port_id: z.string().optional(),
to_schematic_port_id: z.string().optional(),
}),
Expand Down

0 comments on commit ef27d62

Please sign in to comment.