Paraview: Can I annotate sources via python scripts? -
I'm looking at a 3D dataset in Pariquique and marked surface with an object (for example cone) I want to annotate the places and comment them with the text I want to do it through the Python script.
The cone is not a problem but the source text and a3DText have no property for the location Answer: / P> Do you know any such way how can I do this? Answer: After creating a 3D text source, you can show it , then the position property can be changed: I found a method that exploits the representation properties (
renderView1 = GetActiveViewOrCreate ('RenderView') text = a3DText () textDisplay = show (text, renderView1) textDisplay.Position = [1,1,0]
Comments
Post a Comment