代码搜索:BASE
找到约 10,000 项符合「BASE」的源代码
代码结果 10,000
www.eeworm.com/read/247369/12662561
dsp base.dsp
# Microsoft Developer Studio Project File - Name="base" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/247369/12662600
dsw base.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "base"=".\base.dsp"
www.eeworm.com/read/247369/12662603
cpp base.cpp
/*
* 这些代码是由Jeff Molofee 与2000年写的,再次我必须感谢Fredric Echols,因为他使这些代码看起来更简洁和高效,并使他易于使用。
* 如果你发现这些代码对你有所帮助,请访问我的站点 http://nehe.gamedev.net/default.asp ,并让我知道。
****************************************
www.eeworm.com/read/247369/12662604
ncb base.ncb
www.eeworm.com/read/247308/12667024
h base.h
#include "stdafx.h"
#ifndef BASE
#define BASE
class Matrix
{
private:
int m_row, m_col;
public:
double **m_mtxC;
double **m_mtxT;
double *m_pCol;
Matrix(int row, int col);
~Ma
www.eeworm.com/read/247308/12667063
cpp base.cpp
#include "stdafx.h"
#include "Base.h"
////////////////////////////////////////////////////////////////////////////////////
Matrix::Matrix(int row, int col)
{
int i,j;
m_row = row;
m_col
www.eeworm.com/read/333627/12668144
ico base.ico
www.eeworm.com/read/333416/12684222
mdb base.mdb
www.eeworm.com/read/333335/12686584
js base.js
String.prototype.trim = function(){return this.replace(/(^[ | ]*)|([ | ]*$)/g, "");}
function $(s){return document.getElementById(s);}
function $$(s){return document.frames?document.frames[s]:$(s).con
www.eeworm.com/read/246876/12699879