首页 > 其他分享 >blender将多个选择的顶点x值改为0,非常诡异的操作

blender将多个选择的顶点x值改为0,非常诡异的操作

时间:2024-04-17 12:55:45浏览次数:16  
标签:诡异 sheet share answer 顶点 axis data se blender

选择顶点,然后按 S,X,0

 

In Edit mode select the vertices and Scale to 0 on the axis at issue, in this example on the X axis (SX0):

enter image description here

Now that all the vertices are in the same position on that axis, all their positions can be set (in this example to -0.25) in the axis' Median field (Sidebar/N-Panel > Item tab > Transform > Median > axis field) at the same time:

enter image description here

Tip: check your Transformation Orientation, you don't want to do this on Local when you need Global, or vice versa. Also check your Transform Pivot Point, although Median Point (the default) works in most instances you'll sometimes find others (especially 3D Cursor) more usefull.

Share Improve this answer   edited Feb 22, 2022 at 22:23     answered Feb 22, 2022 at 21:

标签:诡异,sheet,share,answer,顶点,axis,data,se,blender
From: https://www.cnblogs.com/zxdplay/p/18140347

相关文章

  • blender创建腰带模型
    importbpyimportbpy#创建立方体并返回对象defcreate_cube(name,dimensions,location,parent=None):#执行添加立方体的操作bpy.ops.mesh.primitive_cube_add(size=dimensions[2],enter_editmode=False,location=location)#选择新创建的立方体......
  • blender创建圆柱并进入编辑模式得代码
    importbpy#定义创建圆柱体并进入编辑模式的函数defcreate_cylinder_and_edit(radius,depth,location):#创建圆柱体bpy.ops.mesh.primitive_cylinder_add(radius=radius,depth=depth,enter_editmode=False,location=location)#选择新创建的圆......
  • blender使用python创建长凳子模型
    importbpyimportmath#导入math模块#jianmodefjianMo(l,w,h,name='CafeBody',location_x=0,location_y=0,location_z=0):#定义咖啡馆的尺寸cafe_length=l#长度,单位:米cafe_width=w#宽度,单位:米cafe_height=h#高度,单位:米#......
  • blender使用python创建柜子模型
    importbpy#创建立方体并返回对象defcreate_cube(name,dimensions,location,parent=None):#执行添加立方体的操作bpy.ops.mesh.primitive_cube_add(size=dimensions[2],enter_editmode=False,location=location)#选择新创建的立方体cube_object......
  • blender使用python创建床模型
    importbpyimportmath#导入math模块#jianmodefjianMo(l,w,h,name='CafeBody',location_x=0,location_y=0,location_z=0):#定义咖啡馆的尺寸cafe_length=l#长度,单位:米cafe_width=w#宽度,单位:米cafe_height=h#高度,单位:米#......
  • blender使用python创建桌子模型
    importbpyimportmath#导入math模块#jianmodefjianMo(l,w,h,name='CafeBody',location_x=0,location_y=0,location_z=0):#定义咖啡馆的尺寸cafe_length=l#长度,单位:米cafe_width=w#宽度,单位:米cafe_height=h#高度,单位:米#......
  • blender使用python创建立方体并应用变换代码
    importbpy#定义咖啡馆的尺寸cafe_width=10#宽度,单位:米cafe_length=15#长度,单位:米cafe_height=3#高度,单位:米#创建咖啡馆的主体(立方体)bpy.ops.mesh.primitive_cube_add(size=10,enter_editmode=False,location=(0,0,0))#获取新创建的立方体对象......
  • Blender快捷操作
    Blender快捷操作快捷键最大化显示窗口​Ctrl+space(空格键)​注意:macos与默认切换输入法快捷键冲突,如果需要保留blender快捷键的话,可以在系统-键盘-快捷键-输入法​中关闭系统快捷键,关闭之后使用CapsLK(切换大小写键)​键切换输入法。四视图​Ctrl+Alt+Q​​​​​......
  • blender怎么用GPU渲染?blender GPU云渲染推荐
    ​在三维建模和渲染领域,Blender以其强大的功能和免费开源的特点广受好评。GPU渲染作为提升渲染效率的关键技术,越来越受到用户的关注。本文将详细介绍如何在Blender中设置并利用GPU进行渲染,以及探索其云渲染的可能性,助力用户高效完成渲染任务。blender开启gpu渲染教程方法一:1、......
  • OpenMesh 计算网格顶点Voronoi面积
    文章目录一、简介二、实现代码三、实现代码参考资料一、简介在计算离散的微分算子时(如拉普拉斯算子、高斯曲率等),总是会需要计算某个网格顶点的局部面积,主要有以下几种:该操作类似于点云中的邻域操作,只不过点云的邻域一般是基于一个圆或者一个圆柱,而这里则......