• <i id='CAn9c'><tr id='CAn9c'><dt id='CAn9c'><q id='CAn9c'><span id='CAn9c'><b id='CAn9c'><form id='CAn9c'><ins id='CAn9c'></ins><ul id='CAn9c'></ul><sub id='CAn9c'></sub></form><legend id='CAn9c'></legend><bdo id='CAn9c'><pre id='CAn9c'><center id='CAn9c'></center></pre></bdo></b><th id='CAn9c'></th></span></q></dt></tr></i><div id='CAn9c'><tfoot id='CAn9c'></tfoot><dl id='CAn9c'><fieldset id='CAn9c'></fieldset></dl></div>

      <bdo id='CAn9c'></bdo><ul id='CAn9c'></ul>

    1. <legend id='CAn9c'><style id='CAn9c'><dir id='CAn9c'><q id='CAn9c'></q></dir></style></legend>

      <small id='CAn9c'></small><noframes id='CAn9c'>

        <tfoot id='CAn9c'></tfoot>
      1. 如何制作 TextGeometry 多线?如何将它放在一个正方形内,以便它像 html 文本一样包裹在 div 内?

        How do I make a TextGeometry multiline? How do I put it inside a square so it wraps like html text does inside a div?(如何制作 TextGeometry 多线?如何将它放在一个正方形内,以便它像 html 文本一样包裹在 div 内?) - IT屋-程序员软件开发技术分享社
        <legend id='Va5JV'><style id='Va5JV'><dir id='Va5JV'><q id='Va5JV'></q></dir></style></legend>
        1. <small id='Va5JV'></small><noframes id='Va5JV'>

          <i id='Va5JV'><tr id='Va5JV'><dt id='Va5JV'><q id='Va5JV'><span id='Va5JV'><b id='Va5JV'><form id='Va5JV'><ins id='Va5JV'></ins><ul id='Va5JV'></ul><sub id='Va5JV'></sub></form><legend id='Va5JV'></legend><bdo id='Va5JV'><pre id='Va5JV'><center id='Va5JV'></center></pre></bdo></b><th id='Va5JV'></th></span></q></dt></tr></i><div id='Va5JV'><tfoot id='Va5JV'></tfoot><dl id='Va5JV'><fieldset id='Va5JV'></fieldset></dl></div>

              <tbody id='Va5JV'></tbody>
              <bdo id='Va5JV'></bdo><ul id='Va5JV'></ul>

                  <tfoot id='Va5JV'></tfoot>
                  本文介绍了如何制作 TextGeometry 多线?如何将它放在一个正方形内,以便它像 html 文本一样包裹在 div 内?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 WebGLthree.jsTHREE.TextGeometry 制作一些 3D 文本.到目前为止工作正常.我能够创建单行 3D 文本.

                  I'm making some 3D text using WebGL, three.js, and THREE.TextGeometry. It's working fine so far. I'm able to create a single line of 3D text.

                  现在我想创建多行文本,比如一个短段落.最好是,当它到达放置它的框/矩形的边框时,我希望它自然地换行.我想要标准 HTML 文本在 div 内时具有的类似行为,换行当它到达其父 div 的边缘时变为多行.

                  Now I want to create multiline text, like a short paragraph. Preferably, I'd like it to wrap naturally when it reaches the border of a box/rectangle its placed it in. I want a similar behavior that standard HTML text has when it's inside of a div, wrapping to multiple lines when it reaches the edge of it's parent div.

                  这是我创建单行的方式:

                  Here's how I'm creating a single line:

                   textGeo = new THREE.TextGeometry(
                      'Hello there. Am I a paragraph? I hope so.',
                      'size': 30
                      'height': 2
                      'font': 'helvetiker'
                      'weight': 'normal'
                      'style': 'normal'
                      bevelThickness: 0.1
                      bevelSize: 0
                      bevelEnabled: true
                      material: 0
                      extrudeMaterial: 1
                    )
                  
                    materialArray = [
                      new THREE.MeshBasicMaterial( { color: 0xFFFFFF  } )
                      new THREE.MeshBasicMaterial( { color: 0x666666, shading: THREE.SmoothShading } )
                    ]
                  
                    textMaterial = new THREE.MeshFaceMaterial(materialArray)
                    textGeo = new THREE.Mesh(textGeo, textMaterial)
                  
                    textGeo.position.x = -150
                    textGeo.rotation.y = de2ra(15)
                  
                    scene.add textGeo
                  

                  如何制作这条多线?另外,我怎样才能把它放在一个正方形里让它包裹起来?如何创建正方形?

                  How can I make this multiline? Also, how can I put this inside a square so it wraps? How do I create the square?

                  推荐答案

                  一种方法可能是 在 HTML 中绘制文本并在 3D 场景中渲染.

                  另一种方法是实例化文本,测试它有多大,如果它大于您的最大期望宽度,则将其拆分为多个 TextGeometry 实例,在 y 轴上偏移高度.您可以使用 geometry.boundingBox(在调用 geometry.computeBoundingBox() 之后)获取几何的尺寸,这是一个 THREE.Box3.边界框具有 minmax 属性,它们是表示对角顶点的向量,因此您可以通过调用例如:

                  The other approach would be to instantiate the text, test how large it is, and split it up into multiple TextGeometry instances if it is larger than your maximum desired width, offset on the y-axis by the height. You can get the dimensions of a geometry with geometry.boundingBox (after calling geometry.computeBoundingBox()) which is a THREE.Box3. Bounding boxes have min and max properties which are vectors representing opposite corner vertices, so you can get the dimensions of a geometry along a given axis by calling e.g.:

                  geometry.boundingBox.max.x - geometry.boundingBox.min.x
                  

                  这篇关于如何制作 TextGeometry 多线?如何将它放在一个正方形内,以便它像 html 文本一样包裹在 div 内?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)
                  How to use coffeescript in developing web-sites?(如何在开发网站时使用coffeescript?)
                  ExecJS::ProgramError: SyntaxError: Reserved word quot;functionquot;(ExecJS::ProgramError: SyntaxError: 保留字“function)

                      <bdo id='VSKod'></bdo><ul id='VSKod'></ul>

                      <small id='VSKod'></small><noframes id='VSKod'>

                          <tbody id='VSKod'></tbody>
                        <i id='VSKod'><tr id='VSKod'><dt id='VSKod'><q id='VSKod'><span id='VSKod'><b id='VSKod'><form id='VSKod'><ins id='VSKod'></ins><ul id='VSKod'></ul><sub id='VSKod'></sub></form><legend id='VSKod'></legend><bdo id='VSKod'><pre id='VSKod'><center id='VSKod'></center></pre></bdo></b><th id='VSKod'></th></span></q></dt></tr></i><div id='VSKod'><tfoot id='VSKod'></tfoot><dl id='VSKod'><fieldset id='VSKod'></fieldset></dl></div>
                        • <legend id='VSKod'><style id='VSKod'><dir id='VSKod'><q id='VSKod'></q></dir></style></legend>

                            <tfoot id='VSKod'></tfoot>