当前位置: 首页>>代码示例>>Python>>正文


Python Window.get_world方法代码示例

本文整理汇总了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
开发者ID:arokem,项目名称:Fos,代码行数:10,代码来源:neuronregion.py

示例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)
开发者ID:duduof,项目名称:fos-pyglet,代码行数:24,代码来源:spherecloud_random.py


注:本文中的fos.Window.get_world方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。