File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ Calculated points:
232232* ` chart.VERTEX `
233233* ` chart.LILITH `
234234* ` chart.TRUE_LILITH `
235+ * ` chart.INTERPOLATED_LILITH `
235236* ` chart.SYZYGY `
236237* ` chart.PART_OF_FORTUNE `
237238* ` chart.PART_OF_SPIRIT `
@@ -376,6 +377,7 @@ Default:
376377 chart.VERTEX : self .point_aspect_rule,
377378 chart.LILITH : self .point_aspect_rule,
378379 chart.TRUE_LILITH : self .point_aspect_rule,
380+ chart.INTERPOLATED_LILITH : self .point_aspect_rule,
379381}
380382```
381383
@@ -476,6 +478,7 @@ Default:
476478 chart.VERTEX : self .point_orbs,
477479 chart.LILITH : self .point_orbs,
478480 chart.TRUE_LILITH : self .point_orbs,
481+ chart.INTERPOLATED_LILITH : self .point_orbs,
479482}
480483```
481484
Original file line number Diff line number Diff line change 131131 chart .VERTEX : 'Vertex' ,
132132 chart .LILITH : 'Lilith' ,
133133 chart .TRUE_LILITH : 'True Lilith' ,
134+ chart .INTERPOLATED_LILITH : 'Interpolated Lilith' ,
134135 chart .SYZYGY : 'Syzygy' ,
135136 chart .PART_OF_FORTUNE : 'Part of Fortune' ,
136137 chart .PART_OF_SPIRIT : 'Part of Spirit' ,
Original file line number Diff line number Diff line change @@ -282,6 +282,7 @@ def aspect_rules(self) -> dict:
282282 chart .VERTEX : self .point_aspect_rule ,
283283 chart .LILITH : self .point_aspect_rule ,
284284 chart .TRUE_LILITH : self .point_aspect_rule ,
285+ chart .INTERPOLATED_LILITH : self .point_aspect_rule ,
285286 } | self ._aspect_rules
286287
287288 @aspect_rules .setter
@@ -318,6 +319,7 @@ def orbs(self) -> dict:
318319 chart .VERTEX : self .point_orbs ,
319320 chart .LILITH : self .point_orbs ,
320321 chart .TRUE_LILITH : self .point_orbs ,
322+ chart .INTERPOLATED_LILITH : self .point_orbs ,
321323 } | self ._orbs
322324
323325 @orbs .setter
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ def all_points():
7070 chart .VERTEX ,
7171 chart .LILITH ,
7272 chart .TRUE_LILITH ,
73+ chart .INTERPOLATED_LILITH ,
7374 chart .SYZYGY ,
7475 chart .PART_OF_FORTUNE ,
7576 )
You can’t perform that action at this time.
0 commit comments