30 |
from Thuban.Model.label import ALIGN_CENTER, ALIGN_TOP, ALIGN_BOTTOM, \ |
from Thuban.Model.label import ALIGN_CENTER, ALIGN_TOP, ALIGN_BOTTOM, \ |
31 |
ALIGN_LEFT, ALIGN_RIGHT |
ALIGN_LEFT, ALIGN_RIGHT |
32 |
from Thuban.Lib.connector import Publisher |
from Thuban.Lib.connector import Publisher |
33 |
|
from Thuban.Model.color import Color |
34 |
|
|
35 |
from renderer import ScreenRenderer, PrinterRender |
from renderer import ScreenRenderer, PrinterRender |
36 |
|
|
707 |
if not layer.Visible(): |
if not layer.Visible(): |
708 |
continue |
continue |
709 |
|
|
710 |
filled = layer.fill is not None |
filled = layer.GetClassification().GetDefaultFill() \ |
711 |
stroked = layer.stroke is not None |
is not Color.None |
712 |
|
stroked = layer.GetClassification().GetDefaultStroke() \ |
713 |
|
is not Color.None |
714 |
|
|
715 |
layer_proj = layer.projection |
layer_proj = layer.projection |
716 |
if layer_proj is not None: |
if layer_proj is not None: |