本文整理匯總了Python中fos.Window.get_world方法的典型用法代碼示例。如果您正苦於以下問題:Python Window.get_world方法的具體用法?Python Window.get_world怎麽用?Python Window.get_world使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類fos.Window
的用法示例。
在下文中一共展示了Window.get_world方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: visualize
# 需要導入模塊: from fos import Window [as 別名]
# 或者: from fos.Window import get_world [as 別名]
def visualize(pos, parents, offset, colors):
wi = Window()
w = wi.get_world()
act = NeuronRegion(vertices=pos, connectivity=parents, offset=offset, colors=colors, force_centering=True)
w.add(act)
return act
示例2: SphereCloud
# 需要導入模塊: from fos import Window [as 別名]
# 或者: from fos.Window import get_world [as 別名]
import numpy as np
from fos import Window
from fos.actor.spherecloud import SphereCloud
n = 100
# the positions for the sphere
positions = np.random.random( (n,3) ).astype( np.float32 ) * 500
# the radii for the spheres
radii = np.random.random( (n,) ).astype( np.float32 ) * 10
# the color for the spheres
colors = np.random.random( (n,4) ).astype( np.float32 ) * 10
colors[:,3] = 1.0
sc = SphereCloud( positions = positions, radii=radii, colors=colors )
wi = Window()
w = wi.get_world()
w.add(sc)