vote up 3 vote down star

I am defining a XAML DrawingBrush resource and I want to draw a custom shape. I found the following GeometryDrawing example:

<GeometryDrawing Geometry="M0,0.1 L0.1,0 1,0.9, 0.9,1z" Brush="Gray" />

What do the M, L, and z letters in the Geometry attribute mean? What are they called?

flag

1 Answer

vote up 4 vote down check

This is a StreamGeometry. It uses something called Path Markup Syntax. M is start point, L starts a line, Z is close.

link|flag
Fantastic. Thank you. – emddudley Jun 23 at 1:11

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.