MicroC/OS-II
The Real-Time Kernel
Second Edition
By Jean J. Labrosse
cmp Books, cmp Media LLC
Copyright 2002 by cmp Books
ISBN 1-57820-103-9
cmp Books
cmp Media LLC
1601 West 23rd Street, Suite 200
Lawrence, Kansas 66046
785-841-1631
www.cmpbooks.com
email: books@cmp.com
The programs and applications on this disk have been carefully tested, but are
not guaranteed for any particular purpose. The publisher does not offer any
warranties and does not guarantee the accuracy, adequacy, or completeness of any
information and is not responsible for any errors or omissions or the results
obtained from use of such information.
JBoss, one of the leading java Open Source groups, integrates and develops these services for a full J2EE-based implementation. JBoss provides JBossServer, the basic EJB container, and Java Manage Preface 18 Great Events of the Twentieth Centuryment Extension (JMX) infrastructure. It also provides JBossMQ, for JMS messaging, JBossTX, for JTA/JTS transactions, JBosscmp for cmp persistence, JBossSX for JAAS based security, and JBossCX for JCA connectivity. Support for web components, such as servlets and JSP pages, is providedby an abstract integration layer. Implementations of the integration service are provided for third party servlet engines like Tomcat and Jetty. JBoss enables you to mix and match these components through JMX by replacing any component you want with a JMX compliant implementation for the same APIs.
該程序在顯示三角形時(shí)的順序是從頂點(diǎn)到底邊,首先得定位頂點(diǎn)像素的坐行列坐標(biāo)(dx,cx)則接其后的像素起始坐標(biāo)為(dx+1,cx-1),終點(diǎn)坐標(biāo)為(dx+1,cx+1),再接著的下一行像素的起始坐標(biāo)為(dx+2,cx-2),終點(diǎn)坐標(biāo)為(dx+2,cx+2),再下一行始終點(diǎn)坐標(biāo)分別為(dx+3,cx-3),(dx+3,cx+3).依此類推直到最后一行的始終坐標(biāo)分別為(dx+n,cx-n),(dx+n,cx+n).在寫同行像素時(shí)用cmp cx,cx+n jnz Y 來實(shí)現(xiàn)循環(huán),所以在這個(gè)循環(huán)過程中注意保護(hù)cx。