I want to create 6 hexagons side by side, each having a different number of edges dashed instead of normal. How is it possible?
The code I currently use to create a single hexagon is:
\foreach \n in {1,2,...,6} {
\node at (\n*2.5-4,1)[above left] {\n$.$} ;
\draw [xshift=\n*2.5cm-3cm] (0:1cm) \foreach \x in {1,2,...,6} {
-- (\x*60:1cm)} --cycle (90:1cm);
}
I don't mind creating each hexagon individually if there's no simple way to create them in a loop, but I don't even know how to do that.
edit: Clarifications: What I want to achieve is basically a list of hexagons, each with a different "order" of edges dashed (That is, all the possible variations of dashed edges such that you can't get from one to the other by rotating the hexagon). I though that's a bit too broad of a questiong so I asked about the coloring of one hexagon with a certain dashed pattern, but I guess I wasn't clear enough (sorry for that, English is not my mother tounge so stuff tend to get messy).
I'm using TeX through Lyx and don't really know how to use it very well, so I don't know how to post an MWE, sorry :(.

