Entries from 2009-02-23 to 1 day

C++ で virtual public

c++

virtual public な継承。初めて使った。 class BinaryInputPort : virtual public BinaryPort class BinaryOutputPort : virtual public BinaryPort class BinaryInputOutputPort : public BinaryInputPort, public BinaryOutputPort 合ってる?それにしても…

今日の復習

Evalutating relatin Selection 3割

Texture mapping における parameter space (u, v)

3d

Texture Mappinng における The projector function の説明を読んで分からない事がある。RTR に「Modeling packages tipically allow artists to deifne (u, v) coordinates per vertex. 」と説明されている。 artists は vertex 毎に parameter space (u, v…

srfi-18

srfi-18 をざっと読んだ。最低限のものしかないのか。

8. clustered index を作って比較 - PostgreSQL のソースコードを読む

db

1000 万件のデータが入った以下の person テーブル。age は 0 - 99 まで 10 万件ずつ一様に分布。(同一ページに同一 age が固まらないように insert) test=# \d person Table "public.person" Column | Type | Modifiers -----------+---------+----------…