Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to automate the addition of any text to the faces of a polyhedron, like this manually-drawn graphic shows (the example's odd numbering scheme isn't relevant):

labelled faces of dodecahedron

It was easy enough to label the vertices:

c = 1;
Show[{Graphics3D[
   Text[c++, #] & /@ PolyhedronData["Dodecahedron", "VertexCoordinates"]], 
   PolyhedronData["Dodecahedron"]},
   Boxed -> False]

labelled edges of dodecahedron

(even though some of the text is placed in front of the shape for vertices that are hidden. That's probably soluble.)

But when I tried to do the same thing for faces, nothing worked. PolyhedronData["Dodecahedron", "Faces"] returns a GraphicsComplex, rather than coordinates.

Am I overlooking an easy solution/option?

Edit: thanks for these answers, they're all brilliant. If I could combine the text placing of szabolcs' answer with the text quality of belisarius', the perfect solution is in sight!

share|improve this question
Please see my edit. Now labels should be oriented to point roughly "up", and also align with edges. – Szabolcs Nov 16 '11 at 18:07
That's great! Even better. – cormullion Nov 16 '11 at 18:15

2 Answers

up vote 14 down vote accepted

Here's a funky approach:

(* this function just transforms the polygon onto the [0,1] 2D square *)
vtc[face_, up_:{0,0,1}] := Module[{pts, pts2, centre, r, r2, topmost},
  pts = N@face;
  centre = Mean[pts];
  pts = (# - centre & /@ pts);
  r = SingularValueDecomposition[pts][[3]];

  (* these two lines ensure that the text on the outer face 
     of a convex polyhedron is not mirrored *)
  If[Det[r] < 0, r = -r];
  If[Last[centre.r] < 0, r = r.RotationMatrix[\[Pi], {1, 0, 0}]];

  pts2 = Most /@ (pts.r);
  topmost = Part[pts2, First@Ordering[up.# &  /@ pts, -1]];
  r2 = Transpose[{{#2, -#1} & @@ topmost, topmost}];
  r2 /= Norm[r2];
  Rescale[pts2.r2]
]

faces = First /@ First@Normal@PolyhedronData["Dodecahedron", "Faces"];

numbers = 
  Graphics[Text[
      Style[#, Underlined, FontFamily -> "Georgia", 
       FontSize -> Scaled[.3]]]] & /@ Range@Length[faces];

Graphics3D[
 MapThread[{Texture[#1], 
    Polygon[#2, VertexTextureCoordinates -> vtc[#2]]} &, {numbers, 
   faces}],
 Boxed -> False
 ]

enter image description here

Demoing a "SmallRhombicosidodecahedron":

enter image description here

share|improve this answer
2  
Congrats on your 5k! – belisarius Nov 16 '11 at 16:59
@belisarius Thank you! :-) – Szabolcs Nov 16 '11 at 17:05
Thanks, great idea. – cormullion Nov 16 '11 at 17:50
a = PolyhedronData["Dodecahedron", "Faces"] /.    GraphicsComplex -> List;
c = 1;
Show[{Graphics3D[
   Text[c++, #] & /@ (Mean /@ (a[[1, #]] & /@ a[[2, 1]]))], 
    PolyhedronData["Dodecahedron"]}, Boxed -> False]

Edit

Perhaps better:

Show[{Graphics3D[
         MapIndexed[Text[#2, #1] &, 
             Mean /@ (PolyhedronData["Dodecahedron", "VertexCoordinates"][[#]] & /@ 
                      PolyhedronData["Dodecahedron", "FaceIndices"])]], 
         PolyhedronData["Dodecahedron"]}, Boxed -> False]

Edit

Or

text = Style[#, 128] & /@ Range[12]
Graphics3D@
 Riffle[Texture /@ text, 
       (Append[#1, {VertexTextureCoordinates -> 
          With[{n = Length[First[#1]]}, Table[1/2 {Cos[2 Pi i/n], Sin[2 Pi i/n]}+ 
                                           {1/2, 1/2}, {i, 0, n - 1}]]}] &) /@ 
   Flatten[Normal[PolyhedronData["Dodecahedron", "Faces"]]]]

enter image description here

share|improve this answer
2  
+1, but why not use a single Map operation instead of three? And toss in a little infix spice while you're at it. ;-) Graphics3D[c++ ~Text~ Mean@a[[1, #]] & /@ a[[2, 1]]] – Mr.Wizard Nov 16 '11 at 15:47
Regarding your second edit: I consider the challenge to be doing this for an arbitrary polyhedron. – Szabolcs Nov 16 '11 at 16:58
@Sza And I upvoted you for that :) – belisarius Nov 16 '11 at 17:05
Great answer, thanks. It will take me much longer for me to study it. I still haven't heard of half of these functions, let alone learnt how to use them! – cormullion Nov 16 '11 at 17:27
@cormullion Don't hesitate in asking for help here! – belisarius Nov 16 '11 at 17:56
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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