本文整理汇总了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)