アノテーション
v10.5 (2012)
アノテーション オブジェクトは、テキスト アノテーションをシーンに挿入するために使用する、 X3DObject専門オブジェクトです。
#
# How to add a simple text annotation to a model object.
#
from siutils import *
mymodel = si().ActiveSceneRoot.AddModel('MyModel')
annotation = mymodel.AddAnnotation('This model is annotated')
log( '%s is annotated with %s: "%s"' % (mymodel.Name, annotation.Name, annotation.Parameters('Message').Value), C.siComment ) |