1 |
# Import the necessary modules. |
# Import the necessary modules. |
2 |
from esys.pyvisi import Scene, Text2D, LocalPosition |
from esys.pyvisi import Scene, Text2D, LocalPosition |
3 |
from esys.pyvisi.constant import * |
from esys.pyvisi.constant import * |
4 |
|
import os |
5 |
|
|
6 |
PYVISI_EXAMPLE_MESHES_PATH = "data_meshes/" |
PYVISI_EXAMPLE_MESHES_PATH = "data_meshes" |
7 |
PYVISI_EXAMPLE_IMAGES_PATH = "data_sample_images/" |
PYVISI_EXAMPLE_IMAGES_PATH = "data_sample_images" |
8 |
X_SIZE = 600 |
X_SIZE = 600 |
9 |
Y_SIZE = 600 |
Y_SIZE = 600 |
10 |
|
|
32 |
t2.shadowOn() |
t2.shadowOn() |
33 |
|
|
34 |
# Render the object. |
# Render the object. |
35 |
s.render(PYVISI_EXAMPLE_IMAGES_PATH + IMAGE_NAME) |
s.render(image_name = os.path.join(PYVISI_EXAMPLE_IMAGES_PATH, IMAGE_NAME)) |
36 |
|
|