The Cone:(圆锥)
// create three cones with different options
cone1 = new Cone({material:"red#black",segmentsH:3,segmentsW:15,heigth:100,radius:50,x:-170});
view.scene.addChild(cone1);
// openEnded 为 true 时表示圆锥底部为空
cone2 = new Cone({material:"orange#black",segmentsH:1,segmentsW:15,heigth:100,radius:50,x:0,openEnded:true,bothsides:true});
view.scene.addChild(cone2);
var mat:PhongColorMaterial = new PhongColorMaterial(0x7777ff);
cone3 = new Cone({material:mat,segmentsH:1,segmentsW:15,heigth:100,radius:50,x:170});
view.scene.addChild(cone3);
The Cylinder:(圆柱)
// create a cube and put it on stage
cone1 = new Cylinder({material:"red#black",segmentsH:1,segmentsW:15,heigth:70,radius:30,x:-170});
view.scene.addChild(cone1);
cone2 = new Cylinder({material:"orange#black",segmentsH:1,segmentsW:15,heigth:70,radius:30,x:0,openEnded:true,bothsides:true});
view.scene.addChild(cone2);
var mat:PhongColorMaterial = new PhongColorMaterial(0x7777ff);
cone3 = new Cylinder({material:mat,segmentsH:1,segmentsW:15,heigth:70,radius:30,x:170});
view.scene.addChild(cone3);
The GeodesicSphere:(地质球)
// add a huge surrounding sphere so we really can see what we're doing
geoSphere = new GeodesicSphere({radius:200,material:"red#black",x:200});
// 同 Sphere 的 segmentsW 和 segmentsH
geoSphere.fractures = 5;
geoSphere.invertFaces();
View.scene.addChild(geoSphere);
The RoundedCube:(圆角cube)
var mat:BitmapMaterial = new BitmapMaterial(someCoolBmd);
var rc: RoundedCube = new RoundedCube(
{material:mat,
width:1000,
depth: 1000,
height: 1000,
radius:500,
subdivision:3 });
view.scene.addChild(rc);
The SeaTurtle:(示例海龟)
// Add turtle so we have something to look at
var turtle:SeaTurtle = new SeaTurtle({material:turtleTexture,rotationX:-90});
view.scene.addChild(turtle);
The GridPlane:
// Make a plane
planeX = new GridPlane({width:gridsize,height:gridsize,segmentsW:10,segmentsH:10,material:"#red"});
view.scene.addChild(planeX);
planeY = new GridPlane({width:gridsize,height:gridsize,segmentsW:10,segmentsH:10,rotationX:90,material:"#lightgreen"});
view.scene.addChild(planeY);
planeZ = new GridPlane({width:gridsize,height:gridsize,segmentsW:10,segmentsH:10,rotationX:90,rotationY:90,material:"#blue"});
view.scene.addChild(planeZ);
The Torus:(圆环)
// Create Torus and apply fancy material
var enviro:BitmapData = Cast.bitmap(enviroTexture);
var grass:BitmapData = Cast.bitmap(grassTexture);
var mat:EnviroBitmapMaterial = new EnviroBitmapMaterial(enviro,grass);
mat.reflectiveness = 0.3;
torus1 = new Torus({material:mat,x:-140,radius:80});
torus1.segmentsR = 20;
torus1.segmentsT = 10;
view.scene.addChild(torus1);
The LineSegment:(线段)
line = new LineSegment({material:"#red"});
view.scene.addChild(line);
// reposition line 重新定位 line
line.start = new Vertex(turtle1.x,turtle1.y,turtle1.z);
line.end = new Vertex(turtle2.x,turtle2.y,turtle2.z);
WireCircle, WireCone, WireCube, WireCylinder, WirePlane, WireSphere, WireTorus:
没有surface
,只有mesh
分享到:
相关推荐
away views of primitives. Chapter 7 covers viewing with a virtual camera and projection onto the viewing plane which is displayed as pixels on the monitor. After modeling, objects are positioned ...
python学习资源
jfinal-undertow 用于开发、部署由 jfinal 开发的 web 项目
基于Andorid的音乐播放器项目设计(国外开源)实现源码,主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。
python学习资源
python学习资源
python学习一些项目和资源
【毕业设计】java-springboot+vue家具销售平台实现源码(完整前后端+mysql+说明文档+LunW).zip
HTML+CSS+JavaScarip开发的前端网页源代码
python学习资源
【毕业设计】java-springboot-vue健身房信息管理系统源码(完整前后端+mysql+说明文档+LunW).zip
成绩管理系统C/Go。大学生期末小作业,指针实现,C语言版本(ANSI C)和Go语言版本
1_基于大数据的智能菜品个性化推荐与点餐系统的设计与实现.docx
【毕业设计】java-springboot-vue交流互动平台实现源码(完整前后端+mysql+说明文档+LunW).zip
内容概要:本文主要探讨了在高并发情况下如何设计并优化火车票秒杀系统,确保系统的高性能与稳定性。通过对比分析三种库存管理模式(下单减库存、支付减库存、预扣库存),强调了预扣库存结合本地缓存及远程Redis统一库存的优势,同时介绍了如何利用Nginx的加权轮询策略、MQ消息队列异步处理等方式降低系统压力,保障交易完整性和数据一致性,防止超卖现象。 适用人群:具有一定互联网应用开发经验的研发人员和技术管理人员。 使用场景及目标:适用于电商、票务等行业需要处理大量瞬时并发请求的业务场景。其目标在于通过合理的架构规划,实现在高峰期保持平台的稳定运行,保证用户体验的同时最大化销售额。 其他说明:文中提及的技术细节如Epoll I/O多路复用模型以及分布式系统中的容错措施等内容,对于深入理解大规模并发系统的构建有着重要指导意义。
基于 OpenCV 和 PyTorch 的深度车牌识别
【毕业设计-java】springboot-vue教学资料管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
此数据集包含有关出租车行程的详细信息,包括乘客人数、行程距离、付款类型、车费金额和行程时长。它可用于各种数据分析和机器学习应用程序,例如票价预测和乘车模式分析。
把代码放到Word中,通过开发工具——Visual Basic——插入模块,粘贴在里在,把在硅基流动中申请的API放到VBA代码中。在Word中,选择一个问题,运行这个DeepSeekV3的宏就可以实现在线问答