我试图用块构建一些文字, 我打算稍后再定制这些文字。 所附的图像是我打算做的模型。
我想用WebGL,因为我想用3D来做,我不能做任何闪光,但我不确定如何将立方体的结构与字母一致。有人能给我一个建议或技术,将文本映射为一系列点,以便从远处看到他们画出相同的文本吗?
""https://i.sstatic.net/1qS0s.png" alt="此处输入图像描述"/ >
我试图用块构建一些文字, 我打算稍后再定制这些文字。 所附的图像是我打算做的模型。
我想用WebGL,因为我想用3D来做,我不能做任何闪光,但我不确定如何将立方体的结构与字母一致。有人能给我一个建议或技术,将文本映射为一系列点,以便从远处看到他们画出相同的文本吗?
""https://i.sstatic.net/1qS0s.png" alt="此处输入图像描述"/ >
首先,您需要字体 — 字符的形状表格 — 格式,您可以从代码中读取。 您是否已经有一个字体? 如果它只是几个字母, 您可以手动为每个字符创建多边形 。
然后,使用光化算法将字符形状转换成一组当前或缺席点/立方体。 如果您的文本完全平坦, 那么使用 2D 数组; 如果您的“ 自定义” 将产生深度效果, 那么您将会想要一个 3D 数组 (“ 将形状写成数组的多个平面, 将形状同写成数组的多个平面 ” 。
前两个步骤的替代方案是,如果您的文字在运行时没有变化,则适合的办法是首先在图像上创建您想要的文字,然后使用图像的像素作为上述 2D 矩阵。在浏览器中,您可以使用 2D Canvas 功能将图像画在画布上,然后读取像素。
然后从此 < em> voxel < / em> 阵列中生成一个 3D 形状, 要为阵列中“ 存在” 点与“ 缺席” 点相匹配的每个位置构造一个多边形。 如果您这样做, 则根据邻居的对对子来做, 就会得到一块块像素的外观( 如 Minecraft ) 。 如果您想要平滑的斜坡( 如您的示例图像), 那么就需要更复杂的技术; 生成光滑表面的传统方式是 < a href=" http:// en. wikipedia. org/ wiki/ Marching_ cubes rel=" nofollow" > 光学立方体 < / a > (但只是行步立方会绕开你的角) 。
我需要获得有关万国邮联/万国邮联/主题的任何信息。 核心数目、记忆价值、记忆和剪切用途......
I am coding to OpenGL ES 2.0 (Webgl). I am using VBOs to draw primitives. I have vertex array, color array and array of indices. I have looked at sample codes, books and tutorial, but one thing I don ...
I ve got some time, and I really would like to learn to get my Maya animated scenes into WebGL. I m not sure where to start really. It would be amazing if I could make a Canvas element and place a ...
I grabbed firefox 3.7a (note go to about:config and enable webgl) and ran the examples on this site http://www.iquilezles.org/apps/shadertoy/ The examples were cool then it hit me. How is it running? ...
I am looking to build a 2d game using WebGL. I want the hardware acceleration that WebGL provides and I cannot get this from the 2D canvas context in the canvas tag. With that said, is there a ...
I want to make an HTML/Javascript web app. Is there a website where I can compare what webrowser already support the HTML 5 tags? And WebGL?
I am thinking about making a 3D game with WebGL (just for conceptual purposes, for now), but all I have never done anything in 3D and have only programmed in PHP for the most part. From what I ...
for development of interactive 3d web applications, which engine is recommended? I am aware that WebGL has been anounced to become standarized for all browsers in the near future (1~2 years). I am ...