返回顶部
首页 > 资讯 > 后端开发 > Python >python如何画立方体
  • 567
分享到

python如何画立方体

2023-06-29 18:06:05 567人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

小编给大家分享一下python如何画立方体,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!立方体每列颜色不同:# Import librarie

小编给大家分享一下python如何画立方体,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

立方体每列颜色不同:

# Import librariesimport matplotlib.pyplot as pltfrom mpl_toolkits.mplot3D import Axes3Dimport numpy as np    # Create axisaxes = [5,5,5]  # Create Datadata = np.ones(axes, dtype=np.bool)  # Controll Tranperencyalpha = 0.9  # Control colourcolors = np.empty(axes + [4], dtype=np.float32)  colors[0] = [1, 0, 0, alpha]  # redcolors[1] = [0, 1, 0, alpha]  # greencolors[2] = [0, 0, 1, alpha]  # bluecolors[3] = [1, 1, 0, alpha]  # yellowcolors[4] = [1, 1, 1, alpha]  # grey  # Plot figurefig = plt.figure()ax = fig.add_subplot(111, projection='3d')  # Voxels is used to customizations of# the sizes, positions and colors.ax.voxels(data, facecolors=colors, edgecolors='grey')

python如何画立方体

立方体各面颜色不同:

import matplotlib.pyplot as pltimport numpy as np  def generate_rubik_cube(nx, ny, nz):    """    根据输入生成指定尺寸的魔方    :param nx:    :param ny:    :param nz:    :return:    """    # 准备一些坐标    n_voxels = np.ones((nx + 2, ny + 2, nz + 2), dtype=bool)     # 生成间隙    size = np.array(n_voxels.shape) * 2    filled_2 = np.zeros(size - 1, dtype=n_voxels.dtype)    filled_2[::2, ::2, ::2] = n_voxels     # 缩小间隙    # 构建voxels顶点控制网格    # x, y, z均为6x6x8的矩阵,为voxels的网格,3x3x4个小方块,共有6x6x8个顶点。    # 这里//2是精髓,把索引范围从[0 1 2 3 4 5]转换为[0 0 1 1 2 2],这样就可以单独设立每个方块的顶点范围    x, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2  # 3x6x6x8,其中x,y,z均为6x6x8     x[1::2, :, :] += 0.95    y[:, 1::2, :] += 0.95    z[:, :, 1::2] += 0.95     # 修改最外面的面    x[0, :, :] += 0.94    y[:, 0, :] += 0.94    z[:, :, 0] += 0.94     x[-1, :, :] -= 0.94    y[:, -1, :] -= 0.94    z[:, :, -1] -= 0.94     # 去除边角料    filled_2[0, 0, :] = 0    filled_2[0, -1, :] = 0    filled_2[-1, 0, :] = 0    filled_2[-1, -1, :] = 0     filled_2[:, 0, 0] = 0    filled_2[:, 0, -1] = 0    filled_2[:, -1, 0] = 0    filled_2[:, -1, -1] = 0     filled_2[0, :, 0] = 0    filled_2[0, :, -1] = 0    filled_2[-1, :, 0] = 0    filled_2[-1, :, -1] = 0     # 给魔方六个面赋予不同的颜色    colors = np.array(['#ffd400', "#fffffb", "#f47920", "#d71345", "#145b7d", "#45b97c"])    facecolors = np.full(filled_2.shape, '#77787b')  # 设一个灰色的基调    # facecolors = np.zeros(filled_2.shape, dtype='U7')    facecolors[:, :, -1] = colors[0]    # 上黄    facecolors[:, :, 0] = colors[1]     # 下白    facecolors[:, 0, :] = colors[2]     # 左橙    facecolors[:, -1, :] = colors[3]    # 右红    facecolors[0, :, :] = colors[4]     # 前蓝    facecolors[-1, :, :] = colors[5]    # 后绿     ax = plt.figure().add_subplot(projection='3d')    ax.voxels(x, y, z, filled_2, facecolors=facecolors)    plt.show()  if __name__ == '__main__':    generate_rubik_cube(4, 4, 4)

python如何画立方体

彩色透视立方体:

from __future__ import divisionimport numpy as npfrom mpl_toolkits.mplot3d import Axes3Dfrom mpl_toolkits.mplot3d.art3d import Poly3DCollectionfrom matplotlib.pyplot import figure, showdef quad(plane='xy', origin=None, width=1, height=1, depth=0):    u, v = (0, 0) if origin is None else origin    plane = plane.lower()    if plane == 'xy':        vertices = ((u, v, depth),                    (u + width, v, depth),                    (u + width, v + height, depth),                    (u, v + height, depth))    elif plane == 'xz':        vertices = ((u, depth, v),                    (u + width, depth, v),                    (u + width, depth, v + height),                    (u, depth, v + height))    elif plane == 'yz':        vertices = ((depth, u, v),                    (depth, u + width, v),                    (depth, u + width, v + height),                    (depth, u, v + height))    else:        raise ValueError('"{0}" is not a supported plane!'.fORMat(plane))    return np.array(vertices)def grid(plane='xy',         origin=None,         width=1,         height=1,         depth=0,         width_segments=1,         height_segments=1):    u, v = (0, 0) if origin is None else origin    w_x, h_y = width / width_segments, height / height_segments    quads = []    for i in range(width_segments):        for j in range(height_segments):            quads.append(                quad(plane, (i * w_x + u, j * h_y + v), w_x, h_y, depth))    return np.array(quads)def cube(plane=None,         origin=None,         width=1,         height=1,         depth=1,         width_segments=1,         height_segments=1,         depth_segments=1):    plane = (('+x', '-x', '+y', '-y', '+z', '-z')             if plane is None else             [p.lower() for p in plane])    u, v, w = (0, 0, 0) if origin is None else origin    w_s, h_s, d_s = width_segments, height_segments, depth_segments    grids = []    if '-z' in plane:        grids.extend(grid('xy', (u, w), width, depth, v, w_s, d_s))    if '+z' in plane:        grids.extend(grid('xy', (u, w), width, depth, v + height, w_s, d_s))    if '-y' in plane:        grids.extend(grid('xz', (u, v), width, height, w, w_s, h_s))    if '+y' in plane:        grids.extend(grid('xz', (u, v), width, height, w + depth, w_s, h_s))    if '-x' in plane:        grids.extend(grid('yz', (w, v), depth, height, u, d_s, h_s))    if '+x' in plane:        grids.extend(grid('yz', (w, v), depth, height, u + width, d_s, h_s))    return np.array(grids)canvas = figure()axes = Axes3D(canvas)quads = cube(width_segments=4, height_segments=4, depth_segments=4)# You can replace the following line by whatever suits you. Here, we compute# each quad colour by averaging its vertices positions.RGB = np.average(quads, axis=-2)# Setting +xz and -xz plane faces to black.RGB[RGB[..., 1] == 0] = 0RGB[RGB[..., 1] == 1] = 0# Adding an alpha value to the colour array.RGBA = np.hstack((RGB, np.full((RGB.shape[0], 1), .85)))collection = Poly3DCollection(quads)collection.set_color(RGBA)axes.add_collection3d(collection)show()

python如何画立方体

以上是“Python如何画立方体”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网Python频道!

--结束END--

本文标题: python如何画立方体

本文链接: https://lsjlt.com/news/325898.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • python如何画立方体
    小编给大家分享一下python如何画立方体,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!立方体每列颜色不同:# Import librarie...
    99+
    2023-06-29
  • python画立方体--魔方
    直接进入主题 立方体每列颜色不同: # Import libraries import matplotlib.pyplot as plt from mpl_toolkits.mplo...
    99+
    2024-04-02
  • HTML5+CSS3如何实现3D立方体旋转动画
    这篇文章将为大家详细讲解有关HTML5+CSS3如何实现3D立方体旋转动画,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。效果图:知识点:1、perspective ,tr...
    99+
    2024-04-02
  • 怎么使用python画立体星空
    要使用Python绘制立体星空,您可以使用Python中的图形库来实现。以下是一种可能的方法:1. 导入所需的库:```python...
    99+
    2023-08-18
    python
  • css如何实现3d立体魔方
    小编给大家分享一下css如何实现3d立体魔方,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!先看效果图吧!把这个看会了,一些网上的3d的相册你就都会了一、我们先准备...
    99+
    2023-06-08
  • python 3D绘制立体几何
    直接复制就能用,写的简单,请勿吐槽 import numpy as np import mpl_toolkits.mplot3d import matplotlib.pyplot as plt x=[0,3,0,3,1.5] y...
    99+
    2023-01-31
    立体几何 python
  • 如何解决CSS3旋转立方体问题
    这篇文章主要介绍如何解决CSS3旋转立方体问题,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!3D坐标概念 当元素进行旋转时,他的坐标轴也跟着他进行旋转注意-y方向问题旋转立方体的效果 分析&nbs...
    99+
    2023-06-08
  • Python中matplotlib如何改变画图的字体
    事情是这样的:平时我汇报或者写论文需要画图,都会喜欢用Python的 matplotlib 和 seaborn 把数据📊 📈 和分析结果 🗂 直接画出来,因为这样太方便...
    99+
    2022-06-02
    Python matplotlib画图字体 Python matplotlib字体
  • Python画图时如何调用本地字体
    matplotlib中的字体文件被封装在font_manager这个子模块中,fontManager.ttflist这个列表涵盖了所有Matplotlib支持的字体。 >&...
    99+
    2024-04-02
  • 如何使用css3创建动态3d立方体
    这篇文章将为大家详细讲解有关如何使用css3创建动态3d立方体,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。 代码如下: <div id="e...
    99+
    2024-04-02
  • 怎么在CSS3中实现3D酷炫立方体变换动画
    这期内容当中小编将会给大家带来有关怎么在CSS3中实现3D酷炫立方体变换动画,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。代码如下:<!DOCTYPE html><html&n...
    99+
    2023-06-08
  • 如何建立架构师的立体化思维?
    从程序员往架构师转型的路上,蔡学镛老师总结的“四维架构设计方法论”对我颇有帮助,让我对架构设计有了更立体化、系统化的认知,现将学习心得分享出来供需要的小伙伴参考。这套方法论通过空间(X、Y、Z)三个维度及时间T维度将问题域解构成可以轻松应对...
    99+
    2023-06-05
  • 如何利用CSS3制作3d半透明立方体
    这篇文章给大家分享的是有关如何利用CSS3制作3d半透明立方体的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。效果图如下:示例代码:<html>  <h...
    99+
    2024-04-02
  • HTML5如何实现旋转立体魔方3D模型
    这篇文章给大家分享的是有关HTML5如何实现旋转立体魔方3D模型的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。下面是预览画面。制作流程首先你需要下载Html5开源库件lufyle...
    99+
    2024-04-02
  • 如何使用css实现波浪线和立方体
    这篇文章给大家分享的是有关如何使用css实现波浪线和立方体的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。     1.css实现波浪线   &n...
    99+
    2024-04-02
  • 如何用css3给字体添加立体效果
    这篇文章主要讲解了“如何用css3给字体添加立体效果”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何用css3给字体添加立体效果”吧! ...
    99+
    2024-04-02
  • python绘制立体玫瑰花
    from matplotlib import cmimport matplotlib.pyplot as plt import numpy as np fig = plt.figure() ax ...
    99+
    2023-09-26
    python 开发语言 玫瑰花 情人节
  • Python基于欧拉角绘制一个立方体
    目录先画个立方体欧拉角和旋转矩阵初步演示不同转动顺序的影响旋转演示先画个立方体 工欲善其事、必先利其器,在开始学习欧拉角模拟之前,可先绘制一个立方体。 在matplotlib中,这个...
    99+
    2023-02-27
    Python欧拉角绘制立方体 Python绘制立方体 Python欧拉角
  • win10声音如何设置立体声
    这篇文章主要介绍“win10声音如何设置立体声”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“win10声音如何设置立体声”文章能帮助大家解决问题。设置方法:我们打开【控制面板】,然后选择【硬件和声音...
    99+
    2023-07-01
  • Python中如何使用matplotlib绘图建立画布及坐标系
    小编给大家分享一下Python中如何使用matplotlib绘图建立画布及坐标系,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!一、建立画布import ...
    99+
    2023-06-22
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作