如果我有一个Manipulate语句,例如:

Manipulate[
 Graphics[Line[{{0, 0}, pt}], PlotRange -> 2], {{pt, {1, 1}},
  Locator}]

如何以最简单的方式更改Locator对象的外观?我必须诉诸动态语句吗?具体来说,我希望使定位器不可见。

最佳答案

除了WReach's answer:在正常的Locator调用中,它的外观可以作为参数之一给出。当在Manipulate中使用时,这是不可能的。但是,Appearance可用于绘制其他定位符。

a = Graphics[{Red, Table[Circle[{0, 0}, i], {i, 3}]}, ImageSize -> 20];
Manipulate[
 Graphics[Line[{{0, 0}, pt}], PlotRange -> 2], {{pt, {1, 1}}, Locator,
   Appearance -> a}]

我不认为这是有据可查的。去年,我尝试找出方法,但找不到方法。在mathematica新闻组上的question上也没有任何响应。

关于wolfram-mathematica - 如何控制Mathematica的Manipulate语句中定位器的外观?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5316493/

10-11 06:17