代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/273525/4209899
style textboxstyle-matrix_label.style
*! version 1.0.0 22dec2002
sequence 3000
set angle default
set size scheme matrix_label
set color scheme matrix_label
set horizontal scheme matrix_label
set vertical scheme
www.eeworm.com/read/446555/1712123
svn-base matrix.h.svn-base
#ifndef _MATRIX_H_
#define _MATRIX_H_
//start
class Matrix {
public:
Matrix(int c, int r);
Matrix(const Matrix& m);
~Matrix();
double& operator()(int i, int j);
double operator()(i
www.eeworm.com/read/446555/1712124
svn-base matrix.pro.svn-base
######################################################################
# Automatically generated by qmake (2.00a) Tue Jun 28 18:51:12 2005
#############################################################
www.eeworm.com/read/446555/1712125
svn-base matrix.cpp.svn-base
#include "matrix.h"
Matrix:: Matrix(int c, int r):m_ColSize(c), m_RowSize(r) {
m_NumArray = new double*[c];
for (int i = 0; i < c; ++i)
m_NumArray[i] = new double[r];
}
www.eeworm.com/read/440906/1783266
out matrix4f.out
Test main...
not initialized
initialized
initialized
initialized
initialized
initialized
initialized
initialized
www.eeworm.com/read/440906/1783463
java matrix4f.java
/*
* Instance initializers are now turned into a new function instinit$ and called
* from the ctor. SAVE_EXPRs can't be easily shared.
*
* Contributed by Adam King
*
*/
pub
www.eeworm.com/read/439630/1805550
reg html_table_matrix.reg
a:14:{s:8:"provides";a:0:{}s:8:"filelist";a:17:{s:10:"Matrix.php";a:4:{s:4:"role";s:3:"php";s:14:"baseinstalldir";s:10:"HTML/Table";s:6:"md5sum";s:32:"64724aabcb9201b40c83d561ee54a05a";s:12:"installed
www.eeworm.com/read/436416/1848746
java matrix4f.java
package demos.nehe.lesson30.math;
/**
* @author Abdul Bezrati
*/
public class Matrix4f {
float elements[] = new float[16];
public Matrix4f() {
}
public Matrix4f(float e
www.eeworm.com/read/436416/1848816
java matrix4f.java
package demos.nehe.lesson48;
/**
* Created by IntelliJ IDEA.
* User: pepijn
* Date: Aug 7, 2005
* Time: 6:01:31 PM
* To change this template use File | Settings | File Templates.
*/
class Matri
www.eeworm.com/read/420043/2071908
java matrix3d.java
/*
* @(#)Matrix3D.java 1.4 98/03/18
*
* Copyright (c) 1995-1997 Sun Microsystems, Inc. All Rights Reserved.
*
* Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
*