Draw Venn diagram using Java

China☆狼群 提交于 2019-12-11 01:42:00

问题


I'm trying to draw a Venn diagram from a given boolean equation e.g (a AND b) AND c I want to do this on an android phone so I need to find a way to do it using Java.

I found a perfect widget that does everything I am looking for in this Boolean Algebra Calculator

They create perfect diagrams, I am sure it's not using Java and neither could I see their logic.

I would appreciate any API, algorithm or guidance.


回答1:


It uses a WolframAlpha widget to generate the Venn diagram. Luckily for you, WolframAlpha offers an API for this kinda stuff.

Though I'll admit, it's a bit overkill. And you have to be connected to the internet to use it.

There are Venn diagram drawing solutions for Java such as charts4j. But if you use those, you'll have to manually compute which regions are highlighted.



来源:https://stackoverflow.com/questions/11697196/draw-venn-diagram-using-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!