摘要:作者:孤剑
这几天一直担心数学建模的问题,虽然自己过生日的时候,我认为的几个朋友没有打电话给我,很伤心,但是生活不容许你有太多的伤心,还是得学习。
眼看马上就要到了数学建模考试的时间了,自己还有很多的东西需要学习,今天看了看微分方程的求解,不时很明白。
[t,x]=solver(´function´,ts,x0,options)
说明:
1.t为由solver......
摘要:作为组件制作的开始,应该了解一些概念,我以为这些概念是非常重要的,将可以作为以后实践的理论基础。?一,?组件的简要层次结构。一般情况下,vcl的组件可以从tcomponent为开始。其最明显的特征就是它的属性可以在设计时通过对象察看器来操纵,另外,他还能拥有其他组件。从tcomponent下,分出非可视组件和可视组件。非可视组件如topendialog,ttimer,ttable等,这些组件因为继......
com.flashvan.Graphic类// ***********************************************************************************************
// ______
// .-" "-.
// / aol \
// | |
// |, .-. .-. ,|
// | )(__/ \__)( |
// |/ /\ \|
// (@_ (_ ^^ _)
// _ ) \_______\__|iiiiii|__/__________________________
// (_)@8@8{}<________|-\iiiiii/-|___________________________>
// )_/ \ /
// (@ `--------` aol flash studio
//
// ***********************************************************************************************
//
// @filename graphic.as
// @description 图形类
// @package com.flashvan
// @author aol
// @email jeremy1982@21cn.com
// @create 2004.7.18
// @lastchange 2004.7.18
// @history
//
// ***********************************************************************************************
dynamic class com.flashvan.graphic extends movieclip
{
static var symbolname:string = "__packages.com.flashvan.graphic";
static var symbolowner:function = com.flashvan.graphic;
static var symbollinked = object.registerclass(symbolname, symbolowner);
function graphic()
{
}
static function create(base_mc:movieclip, name:string, depth:number,o:object)
{
var mc = base_mc.attachmovie(symbolname, name, depth,o);
return mc;
}
function drawrect(x1:number, y1:number, x2:number, y2:number):void
{
moveto(x1,y1);
lineto(x2,y1);
lineto(x2,y2);
lineto(x1,y2);
lineto(x1,y1);
}
function drawline(x1:number, y1:number, x2:number, y2:number):void
{
}
function fillrect(x:number, y:number, width:number, height:number):void
{
}
// drawroundrect
// x - x position of fill
// y - y position of fill
// w - width of fill
// h - height of fill
// r - corner radius of fill :: number or object {br:#,bl:#,tl:#,tr:#...
下一页 摘要:关键字:诺基亚n-gage bug sybian6.1系统问题
[阿赖原作,转贴请注明链接出处]
n gage(又称小n,ng)作为诺基亚的第一款游戏手机,使用过程中经常会出现各种软件的故障。这
里就本人在使用过程中碰到的问题总结在这里。本贴不定期更新中,也欢迎使用小n的朋友通过回复
本贴来补充。一、刚拿到ng时在办公室的电脑(xp操作系统)上连接usb没问题,但在我自己的电脑上连却不行,......