python绘制立方体的方法


Posted in Python onJuly 02, 2018

本文实例为大家分享了python绘制立方体的具体代码,供大家参考,具体内容如下

#!/usr/bin/env python
 
# This is (almost) a direct C++ to Python transliteration of
# <VTK-root>/Examples/DataManipulation/Cxx/Cube.cxx from the VTK
# source distribution, which "shows how to manually create vtkPolyData"
#
# A convenience function, mkVtkIdList(), has been added and one if/else
# so the example also works in version 6 or later.
#
# Lines like `obj->Delete()` have been transliterated as `del obj` to,
# preserve the resemblance to the original C++ example, although I
# doubt this achieves anything beyond what Python's garbage collection
# would do anyway.
 
import vtk
 
# Makes a vtkIdList from a Python iterable. I'm kinda surprised that
# this is necessary, since I assumed that this kind of thing would
# have been built into the wrapper and happen transparently, but it
# seems not.
 
 
def mkVtkIdList(it):
 vil = vtk.vtkIdList()
 for i in it:
  vil.InsertNextId(int(i))
 return vil
 
# 绘制通用方法
def myShow(cube):
 # Now we'll look at it.
 cubeMapper = vtk.vtkPolyDataMapper()
 if vtk.VTK_MAJOR_VERSION <= 5:
  cubeMapper.SetInput(cube)
 else:
  cubeMapper.SetInputData(cube)
 cubeMapper.SetScalarRange(0, 7)
 cubeActor = vtk.vtkActor()
 cubeActor.SetMapper(cubeMapper)
 
 # The usual rendering stuff.
 camera = vtk.vtkCamera()
 camera.SetPosition(1, 1, 1)
 camera.SetFocalPoint(0, 0, 0)
 
 renderer = vtk.vtkRenderer()
 renWin = vtk.vtkRenderWindow()
 renWin.AddRenderer(renderer)
 
 iren = vtk.vtkRenderWindowInteractor()
 iren.SetRenderWindow(renWin)
 
 renderer.AddActor(cubeActor)
 renderer.SetActiveCamera(camera)
 renderer.ResetCamera()
 renderer.SetBackground(0, 0, 0)
 
 renWin.SetSize(300, 300)
 
 # interact with data
 renWin.Render()
 iren.Start()
 del cubeMapper
 del cubeActor
 del camera
 del renderer
 del renWin
 del iren
 
def main():
 # x = array of 8 3-tuples of float representing the vertices of a cube:
 # 8个三维值代表长方体的8个顶点
 x = [(0.0, 0.0, 0.0), (1.0, 0.0, 0.0), (1.0, 1.0, 0.0), (0.0, 1.0, 0.0),
   (0.0, 0.0, 1.0), (1.0, 0.0, 1.0), (1.0, 1.0, 1.0), (0.0, 1.0, 1.0)]
 
 # pts = array of 6 4-tuples of vtkIdType (int) representing the faces
 #  of the cube in terms of the above vertices
 # 点的编号0-7,每个面由4个点组成
 pts = [(0, 1, 2, 3), (4, 5, 6, 7), (0, 1, 5, 4),
   (1, 2, 6, 5), (2, 3, 7, 6), (3, 0, 4, 7)]
 
 # We'll create the building blocks of polydata including data attributes.
 cube = vtk.vtkPolyData()
 points = vtk.vtkPoints()
 polys = vtk.vtkCellArray()
 scalars = vtk.vtkFloatArray()
 
 # Load the point, cell, and data attributes.
 for i in range(8):
  points.InsertPoint(i, x[i])
 for i in range(6):
  polys.InsertNextCell(mkVtkIdList(pts[i]))
 for i in range(8):
  scalars.InsertTuple1(i, i)
 
 # We now assign the pieces to the vtkPolyData.
 cube.SetPoints(points)
 del points
 cube.SetPolys(polys)
 del polys
 cube.GetPointData().SetScalars(scalars)
 del scalars
 
 myShow(cube)
 # Clean up
 del cube
 
main()

效果图:

python绘制立方体的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
使用python BeautifulSoup库抓取58手机维修信息
Nov 21 Python
对pandas的dataframe绘图并保存的实现方法
Aug 05 Python
python实现时间o(1)的最小栈的实例代码
Jul 23 Python
python3 面向对象__类的内置属性与方法的实例代码
Nov 09 Python
对python numpy.array插入一行或一列的方法详解
Jan 29 Python
python查看文件大小和文件夹内容的方法
Jul 08 Python
python GUI图形化编程wxpython的使用
Jul 19 Python
python关闭占用端口方式
Dec 17 Python
解决Pycharm的项目目录突然消失的问题
Jan 20 Python
Python导入数值型Excel数据并生成矩阵操作
Jun 09 Python
PyCharm中关于安装第三方包的三个建议
Sep 17 Python
python 使用openpyxl读取excel数据
Feb 18 Python
python numpy 一维数组转变为多维数组的实例
Jul 02 #Python
Python实现通过继承覆盖方法示例
Jul 02 #Python
Numpy中矩阵matrix读取一列的方法及数组和矩阵的相互转换实例
Jul 02 #Python
Python 中的range(),以及列表切片方法
Jul 02 #Python
python 统计数组中元素出现次数并进行排序的实例
Jul 02 #Python
分享vim python缩进等一些配置
Jul 02 #Python
实践Vim配置python开发环境
Jul 02 #Python
You might like
php关于array_multisort多维数组排序的使用说明
2011/01/04 PHP
ThinkPHP3.1新特性之多层MVC的支持
2014/06/19 PHP
js+php实现静态页面实时调用用户登陆状态的方法
2015/01/04 PHP
php获取网站百度快照日期的方法
2015/07/29 PHP
有关DOM元素与事件的3个谜题
2010/11/11 Javascript
treepanel动态加载数据实现代码
2012/12/15 Javascript
JavaScript事件处理器中的event参数使用介绍
2013/05/24 Javascript
在ASP.NET中使用JavaScript脚本的方法
2013/11/12 Javascript
jQuery+css实现的tab切换标签(兼容各浏览器)
2016/01/28 Javascript
基于JS实现省市联动效果代码分享
2016/06/06 Javascript
分享jQuery网页元素拖拽插件
2020/12/01 Javascript
浅析JavaScript函数的调用模式
2016/08/10 Javascript
React Native第三方平台分享的实例(Android,IOS双平台)
2017/08/04 Javascript
ES6中javascript实现函数绑定及类的事件绑定功能详解
2017/11/08 Javascript
浅谈Vue响应式(数组变异方法)
2018/05/07 Javascript
axios 封装上传文件的请求方法
2018/09/26 Javascript
vue使用el-upload上传文件及Feign服务间传递文件的方法
2019/03/15 Javascript
vue动态路由:路由参数改变,视图不更新问题的解决
2019/11/05 Javascript
解决vue 表格table列求和的问题
2019/11/06 Javascript
mapboxgl实现带箭头轨迹线的代码
2021/01/04 Javascript
Python获取Windows或Linux主机名称通用函数分享
2014/11/22 Python
Python中的模块导入和读取键盘输入的方法
2015/10/16 Python
python开发之基于thread线程搜索本地文件的方法
2015/11/11 Python
Python获取指定字符前面的所有字符方法
2018/05/02 Python
python 求某条线上特定x值或y值的点坐标方法
2019/07/09 Python
Python 日期区间处理 (本周本月上周上月...)
2019/08/08 Python
Python字符串格式化常用手段及注意事项
2020/06/17 Python
为什么是 Python -m
2020/06/19 Python
MVMT手表官方网站:时尚又实惠的高品质手表
2016/12/04 全球购物
戴森比利时官方网站:Dyson BE
2020/10/03 全球购物
秋季红领巾广播稿
2014/01/27 职场文书
《雷雨》教学反思
2014/02/20 职场文书
学习交流会主持词
2014/04/01 职场文书
创先争优演讲稿
2014/09/15 职场文书
2014年社区卫生工作总结
2014/12/18 职场文书
Python 类,对象,数据分类,函数参数传递详解
2021/09/25 Python