From ea1e3f2bf4bbaa066dd12cd66940aba38d242a77 Mon Sep 17 00:00:00 2001 From: AlainKadar Date: Thu, 13 Jun 2024 19:54:27 -0400 Subject: [PATCH] Add perpendicular bisector weight type --- StructuralGT/networks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/StructuralGT/networks.py b/StructuralGT/networks.py index b470500..a19cd47 100644 --- a/StructuralGT/networks.py +++ b/StructuralGT/networks.py @@ -178,7 +178,8 @@ def set_graph(self, sub=True, weight_type=None, write='network.gsd', **kwargs): How to weight the edges. Options include :code:`Length`, :code:`Width`, :code:`Area`, :code:`FixedWidthConductance`, - :code:`VariableWidthConductance`. + :code:`VariableWidthConductance`, + :code:`PerpBisector`. """ G = base.gsd_to_G(self.gsd_name, _2d=self._2d, sub=sub)