33 pen() : iWidth{ 0.0 } {}
34 pen(
const color& aColor,
bool aAntiAliased =
true) : iColor{ aColor }, iWidth{ 1.0 }, iAntiAliased{ aAntiAliased } {}
35 pen(
const color& aColor,
dimension aWidth,
bool aAntiAliased =
true) : iColor{ aColor }, iWidth{ aWidth }, iAntiAliased{ aAntiAliased } {}
36 pen(
const gradient& aColor,
bool aAntiAliased =
true) : iColor{ aColor }, iWidth{ 1.0 }, iAntiAliased{ aAntiAliased } {}
37 pen(
const gradient& aColor,
dimension aWidth,
bool aAntiAliased =
true) : iColor{ aColor }, iWidth{ aWidth }, iAntiAliased{ aAntiAliased } {}
38 pen(
const color_or_gradient& aColor,
bool aAntiAliased =
true) : iColor{ aColor }, iWidth{ 1.0 }, iAntiAliased{ aAntiAliased } {}