bate's blog

調べたこと実装したことなどを取りとめもなく書きます。

2013-07-30から1日間の記事一覧

入門ビジネス英語07/30

any time would do.のwouldが聞き取れなかった。 英語 意味 any time 何時でも anytime いつでも What time works for you? 何時が都合が良いですか? Any time world do. いつでも大丈夫ですよ What time should I schedule interview? 面接スケジュールは…

ワンポイント・ニュースで英会話07/30

早すぎて聞き取れない。 折り紙の技術を工業製品に応用する話だったような。 英語 意味 the japanese art of folding paper 日本の紙を折る技術 intricate 入り組んだ fold 〜を折る

英会話タイムトライアル07/30

ちょくちょく聞き取れないものもあった。 英語 意味 I'm all ears. ぜひ聞きたいです We are all ears. They seems to be all ears. If anyone has suggestion, I'm all ears. Tokyo is all ears. The president is all ears. If there's a better way, I'm …

ラジオ英会話07/30

lemonが冷麺に聞こえてしまうポンコツ。 テキストなしでもいけそう。 英語 意味 clean out 〜 〜を掃除する make room for 〜 〜のためにスペースを作る toss it. 捨てる mold カビ shelf life 保存期間 it's stll good. まだ大丈夫 Does Miso has long shel…

GLFW3.0.1とGLEW1.10.0での簡易サンプル

VBOとシェーダーを使ったもの。 動けばOK 行列はglmを使った。楽ちん。三角形が回るサンプル。アプリケーション // glew32s.libを使う. #define GLEW_STATIC #include <stdio.h> #include <stdlib.h> #include <GL/glew.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> const int g_WindowWidth</glm/gtc/type_ptr.hpp></glm/gtc/matrix_transform.hpp></glm/glm.hpp></glfw/glfw3.h></gl/glew.h></stdlib.h></stdio.h>…

GLFW3.0.1とGLEW1.10.0でVBO

後はシェーダーを使えば最少サンプルになる。 // glew32s.libを使う. #define GLEW_STATIC #include <stdio.h> #include <stdlib.h> #include <GL/glew.h> #include <GLFW/glfw3.h> const int g_WindowWidth = 640; const int g_WindowHeight = 480; GLuint g_VBO = 0; GLuint g_Indices = 0; GLFWwindow*</glfw/glfw3.h></gl/glew.h></stdlib.h></stdio.h>…