User Portlet User Portlet

Christopher Wolfram
Discussions
![enter image description here][1] &[Wolfram Notebook][2] (Also available in HTML [here][3].) [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=networkColumn.png&userId=24497 [2]:...
> Also available at https://christopherwolfram.com/projects/spelling-bee/ &[Wolfram Notebook][1] [1]: https://www.wolframcloud.com/obj/52c06ff7-9b5e-4686-9029-67c17f3067df
Nice post! I'd like to play a bit with the data, but I think the permissions on that CloudObject are still private: In[112]:= theOfficeEpisodeData = Import[CloudObject["user:jfklein/the-office-episode-dataset.wl"]] During evaluation...
&[Wolfram Notebook][1] (Also available on [my website][2].) [1]: https://www.wolframcloud.com/obj/0247eba5-0fe8-48a6-a88e-f01c2d0e5453 [2]:...
Here is a pretty concise solution using Inactive: Activate[Inactive[SetDelayed][ToExpression[funcName]@@(Pattern[#,_]&/@args),body]] and another using With: With[{funcName=ToExpression[funcName],args=Pattern[#,_]&/@args,body=body}, ...
In your first example, the intersection is being represented symbolically. You can get a mesh back using BoundaryDiscretizeRegion: cubd = Cuboid[{-2, -2, -2}, {4, 4, 4}]; hlfsp = HalfSpace[{-1, -1, 1}, {0, 0, 0}]; ...
![enter image description here][1] &[Wolfram Notebook][2] [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=medialAxis.png&userId=24497 [2]: https://www.wolframcloud.com/obj/fc3c5af7-2d27-4bdb-bbc7-1e5fe2bdabd3
This is really cool! There is a chapter about something similar to this in a book called Opt Art that you might enjoy. The whole book is about creating art with linear optimization.
Ah, that makes a lot of sense. You are basically getting only the "outer" hull (a bit like the upper/lower hull) instead of the full convex hull. I'll make that change if I submit these to the function repository. Edit: I wonder why GeoVoronoi...
If the `ColorFunction` is of the form `ColorData[...]` it processes it differently from generalized functions. They are equivalent in general, but `GeoRegionValuePlot` treats them differently.