Skip to main content

第 31 月 960 天

二〇一一年 辛卯 二月十八

   这些天天使有些拒绝照相,天使爸爸拿起相机,天使转身就跑,跑的比兔子还快,一旦看到天使爸爸手里有相机,就准备藏起来,弄的天使爸爸有些小郁闷。后来发现,天使不是真的拒绝照相,只是觉的这样挺好玩儿的。
  向天使爸爸展示她的“小灰灰”。


  大西红柿,只吃了一口就给天使爸爸了。

  天使自己悟出来的造型,很有味道。


Comments

Popular posts from this blog

Using textures in WebGL

Loading textures The first thing to do is add code to load the textures. In our case, we'll be using a single texture, mapped onto all six sides of our rotating cube, but the same technique can be used for any number of textures. Note: It's important to note that the loading of textures follows cross-domain rules; that is, you can only load textures from sites for which your content has CORS approval. See Cross-domain textures below for details. The code that loads the texture looks like this: // // Initialize a texture and load an image. // When the image finished loading copy it into the texture. // function loadTexture(gl, url) {   const texture = gl.createTexture();   gl.bindTexture(gl.TEXTURE_2D, texture);   // Because images have to be download over the internet   // they might take a moment until they are ready.   // Until then put a single pixel in the texture so we can   // use it immediately. When the image has finished downloading   // we'l...

Upload video 2

Upload image 4