當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。