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:
renderView1 = GetActiveViewOrCreate ('RenderView') text = a3DText () textDisplay = show (text, renderView1) textDisplay.Position = [1,1,0]
I found a method that exploits the representation properties (
- Tools - Start Trace
-
- Source - 3D Text
- Make sure you are viewing it
- In the 3dtext property panel, Advanced
- I also modify the scale because it is my object's value.
- Too large
- Tools -stop trace: You can see chorus Python dragon instructions
Comments
Post a Comment