代码搜索:VECTOR

找到约 10,000 项符合「VECTOR」的源代码

代码结果 10,000
www.eeworm.com/read/398699/7927893

asm vector.asm

********************************************************************************* * Vector.ASM v1.00 * * 版权(c) 2000- 北京合众达电子技术有限责任公司 * * 设计者: 钱建良 * ********
www.eeworm.com/read/298756/7939695

h vector.h

#ifndef VECTOR_H #define VECTOR_H /* Conversion constants between degrees and radians */ #define VEC_DEG_TO_RAD 0.017453293 #define VEC_RAD_TO_DEG 57.29578 typedef float vector[3]; typed
www.eeworm.com/read/298756/7939742

cpp vector.cpp

#include "stdafx.h" #include #include #include "vector.h" #include "body.h" void vecPrint (vector v) { printf ("[%f %f %f]\n", v[0], v[1], v[2]); } void vecCopy (vect
www.eeworm.com/read/197875/7964691

c vector.c

#include #include #include // #include /** ** original elements of vector: 51 23 7 88 41 98 12 103 37 6 sorted elements of vector: 6 7 12 23
www.eeworm.com/read/197653/7982113

html vector.html

www.eeworm.com/read/197653/7982386

h vector.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/197417/7995933

class vector.class

www.eeworm.com/read/197417/7995976

java vector.java

// 一个表示速度的简单的类 public class Vector extends Object { // 这个Vector对象的值 protected int x; // 以0为值创建一个默认的 Vector public Vector() {
www.eeworm.com/read/297661/8005393

s vector.s

ModeMask EQU 0x1F SVC32Mode EQU 0x13 IRQ32Mode EQU 0x12 FIQ32Mode EQU 0x11 User32Mode EQU 0x10 Abort32Mode EQU 0x17 Undef32Mode EQU 0x1B IRQ_BIT EQU 0x80 FIQ_BIT EQU 0x40 GBLS
www.eeworm.com/read/297661/8005548

o vector.o