• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            The Coder

            I am a humble coder.

              C++博客 :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
              4 隨筆 :: 4 文章 :: 9 評(píng)論 :: 0 Trackbacks

            2006年8月11日 #

                 摘要: OpenGL 中場(chǎng)景進(jìn)行變換,要經(jīng)歷一些過(guò)程:視圖變換 à 模型變換 à 投影變換,然后到了窗口坐標(biāo)。這幾個(gè)變換開始的時(shí)候把我搞很混,這幾天整理一下。 ?????? 一般書上把這幾個(gè)變換用照相機(jī)類比,其實(shí)每個(gè)變換都是產(chǎn)生著一個(gè) ...  閱讀全文
            posted @ 2006-08-11 22:27 TH 閱讀(5961) | 評(píng)論 (8)編輯 收藏

            2006年6月2日 #

            下面這段引文可對(duì)左值、右值加深理解。

            參考文獻(xiàn):《ANSI/ISO C++ Professional Programmer's Handbook》

            lvalues and rvalues
            An object is a contiguous region of storage. An lvalue is an expression that refers to such an object. The original
            definition of lvalue referred to an object that can appear on the left-hand side of an assignment. However, const
            objects are lvalues that cannot be used in the left-hand side of an assignment. Similarly, an expression that can appear
            in the right-hand side of an expression (but not in the left-hand side of an expression) is an rvalue. For example

            #include? < string >
            using ? namespace ?std;
            int & ?f();
            void ?func()
            {
            ????
            int ?n;
            ????
            char ?buf[ 3 ];
            ????n?
            = ? 5 ;? // ?n?is?an?lvalue;?5?is?an?rvalue
            ????buf[ 0 ]? = ? ' a ' ;? // ?buf[0]?is?an?lvalue,?'a'?is?an?rvalue
            ???? string ?s1? = ? " a " ,?s2? = ? " b " ,?s3? = ?? " c " ;? // ?"a",?"b",?"c"?are?rvalues
            ????s1? = ? // ?lvalue
            ????s2? + s3;? // s2?and?s3?are?lvalues?that?are??implicitly?converted?to?rvalues
            ????s1? = ? // lvalue
            ???? string ( " z " );? // temporaries?are?rvalues
            ???? int ? * ?p? = ? new ? int ;? // p?is?an?lvalue;?'new?int'?is?an?rvalue
            ????f()? = ? 0 ;? // a?function?call?that?returns?a?reference?is?an?lvalue
            ?????s1.size();? // otherwise,?a?function?call?is?an?rvalue?expression
            }

            An lvalue can appear in a context that requires an rvalue; in this case, the lvalue is implicitly converted to an rvalue.
            An rvalue cannot be converted to an lvalue. Therefore, it is possible to use every lvalue expression in the example as
            an rvalue, but not vice versa.
            posted @ 2006-06-02 12:03 TH 閱讀(543) | 評(píng)論 (0)編輯 收藏

            2006年5月30日 #

            現(xiàn)在有個(gè)困惑,不知道博客怎么寫。既然是個(gè)專業(yè)性的博客,就不敢再這里亂寫。
            對(duì)博客定位的問(wèn)題,我也思考數(shù)日。覺得博客可以有兩個(gè)分類。
            1、. 作為初學(xué)者學(xué)習(xí)的成長(zhǎng)歷程。從hello world開始。當(dāng)然,至于最后能將這個(gè)歷程走到哪里,卻不得而知了。更甚者,不知是按部就班,一步一步學(xué),還是心血來(lái)潮,想到哪里學(xué)哪里。
            2 、 作為一個(gè)專題性的主題討論。提出一個(gè)問(wèn)題,解決它,再談?wù)?,改進(jìn)。這樣的一個(gè)好處就是能對(duì)問(wèn)題有清晰的認(rèn)識(shí)和解決問(wèn)題能力的也會(huì)提高。主題來(lái)來(lái)源可以是別人的博客上的subject,平時(shí)遇到的問(wèn)題,解決問(wèn)題時(shí)候出來(lái)的新問(wèn)題等等。

            寫博克的形式,我想大致可以以上面兩種。
            更關(guān)心的問(wèn)題是,我們?cè)趯懖┛偷倪^(guò)程中能得到什么?即既得利益所得。這也同樣是能否繼續(xù)寫下去的一個(gè)驅(qū)動(dòng)力。
            可以得到的,我想可以有:1、能力積累。分析、解決問(wèn)題的能力。
                   ????????????????????2、技術(shù)積累。技術(shù)知識(shí)的擴(kuò)張。
                  ????????????????????????3、代碼積累。算法、編程技巧的積淀。同時(shí)可以為創(chuàng)新作積累。 
                        4、技術(shù)會(huì)友。有朋自遠(yuǎn)方來(lái)...  



            這是我對(duì)即將開張的博客的一些想法,請(qǐng)多多指教。


            /---------------------------------------------------------------------------------
            時(shí)代有時(shí)代的主題,文章也有自己的主旨。偏離了方向,最終會(huì)被拋棄?! ?br />-----------------------------------------------------------------------------------/

            posted @ 2006-05-30 11:36 TH 閱讀(377) | 評(píng)論 (0)編輯 收藏

            2006年5月28日 #

            大家好:
            ??????? 我是TH。來(lái)自杭州,致力于C++和圖形學(xué)等方面。請(qǐng)多多指教。
            posted @ 2006-05-28 14:16 TH 閱讀(316) | 評(píng)論 (1)編輯 收藏

            僅列出標(biāo)題  
            久久99九九国产免费看小说| 久久国产免费直播| 久久噜噜久久久精品66| 精品久久久无码中文字幕天天| 国产成人无码精品久久久久免费| 国产亚洲精午夜久久久久久| 久久久久久久久久久免费精品| 人人狠狠综合88综合久久| 99久久国产宗和精品1上映| 久久免费视频观看| 亚洲精品NV久久久久久久久久| 久久香综合精品久久伊人| 夜夜亚洲天天久久| 久久久久亚洲av成人网人人软件| 久久人人爽人人爽人人片AV东京热 | 久久久久亚洲av毛片大| 亚洲精品国产自在久久| 一本一道久久a久久精品综合 | 国产精品久久新婚兰兰| 久久久精品国产sm调教网站| 久久99国产一区二区三区| 久久久久久亚洲精品成人| 亚洲国产成人久久综合一区77 | 亚洲国产欧洲综合997久久| 欧美精品一区二区精品久久| 久久久噜噜噜www成人网| 久久久这里有精品| 久久久黄片| 久久久久久久国产免费看| 久久免费高清视频| 精品无码久久久久久午夜| 久久综合亚洲鲁鲁五月天| 尹人香蕉久久99天天拍| 久久se这里只有精品| 国产精品美女久久久久AV福利| 久久久久亚洲av无码专区喷水| 久久人人爽人人爽人人片AV东京热| 午夜精品久久久久| 久久久久人妻一区精品| 久久精品国产久精国产| 久久伊人精品青青草原高清|