FontTable {
  1 "Trinity.Medium"
  2 "Trinity.Medium.Italic"
  3 "Homerton.Bold"
  4 "Homerton.Medium"
}



Text {
  StartAt 100 400
  Size 40 40
  Style Font "Homerton.bOLD" # case doesn't matter
  Colour r255g0b0
  Text "Homerton BOLD"
}

#--------------------------------------------
# no matrix centred
# show the box in which the remaining items are centred
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 50 250
  Line 150 250
  Line 150 380
  Line 50 380
  Close
}
# centre
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 50 250
  Line 150 380
  Move 150 250
  Line 50 380
}

XfText {
  Style Font "Trinity.Medium"
  #Matrix 0.5 1 2 -0.1  30 0
  Size 20 20
  CentreIn 50 250 150 380
  Text "Middle"
}

#--------------------------------------------
#  matrix centred, no translation
# show the box in which the remaining items are centred
Path {
  Width 0.25
  OutlineColour r130g80b120
  Style { Dash { 4 2 1 2 } }
  Move 150 250
  Line 250 250
  Line 250 380
  Line 150 380
  Close
}
# centre
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 150 250
  Line 250 380
  Move 250 250
  Line 150 380
}
XfText {
  Style Font "Trinity.Medium"
  Matrix 0.5 1 2 -0.1  0 0
  Size 20 20
  CentreIn 150 250 250 380
  Text "Middle"
}
#--------------------------------------------

#  matrix centred, with x translation
# show the box in which the remaining items are centred
Path {
  Width 0.25
  OutlineColour r30g80b220
  Style { Dash { 4 2 1 2 } }
  Move 250 250
  Line 350 250
  Line 350 380
  Line 250 380
  Close
}
# centre
Path {
  Width 0.25
  OutlineColour r30g180b220
  Style { Dash { 4 2 1 2 } }
  Move 250 250
  Line 350 380
  Move 350 250
  Line 250 380
}
XfText {
  Style Font "Trinity.Medium"
  Matrix 0.5 1 2 -0.1  30 0
  Size 20 20
  CentreIn 250 250 350 380
  Text "Middle"
}

#--------------------------------------------
