代码搜索:VECTOR
找到约 10,000 项符合「VECTOR」的源代码
代码结果 10,000
www.eeworm.com/read/463185/7186595
obj vector.obj
www.eeworm.com/read/461071/7234933
h vector.h
#ifndef __VECTOR_H__
#define __VECTOR_H__
class Vector
{
public:
Vector() {x=y=z=0;} // default constructor
Vector(double xx, double yy, double zz) {x=xx; y=yy; z=zz;}
Ve
www.eeworm.com/read/461071/7234983
obj vector.obj
www.eeworm.com/read/461071/7235018
cpp vector.cpp
#include "vector.h"
#include
#include
#include
// set x, y and z values of the current vector //
void Vector::set(double _x, double _y, double _z)
{
x=_x;
www.eeworm.com/read/459842/7264144
h vector.h
/**
* Copyright (C) 2004-2005 Savoir-Faire Linux inc.
* Author: Laurielle Lea
*
www.eeworm.com/read/459842/7264155
cpp vector.cpp
/**
* Copyright (C) 2004-2005 Savoir-Faire Linux inc.
* Author: Laurielle Lea
*
www.eeworm.com/read/459616/7270462
h vector.h
#ifndef Vector_
#define Vector_
#include
#include "xcept.h"
template
class Vector {
public:
Vector(int size = 0);
Vector(const Vector& v); //copy constructor
~Vect
www.eeworm.com/read/459616/7270681
cpp vector.cpp
#include
#include "vector.h"
void main(void)
{
try {
Vector X(10), Y, Z;
for (int i=1; i
www.eeworm.com/read/458360/7298600
h vector.h
/* @(#) vector.h 1.3 1/27/86 17:47:26 */
/*ident "@(#)cfront:incl/vector.h 1.3"*/
#ifndef GENERICH
#include
#endif
#define vector(type) name2(type,vector)
#define vectordeclare(type)
www.eeworm.com/read/458095/7313289