代码搜索:Position
找到约 10,000 项符合「Position」的源代码
代码结果 10,000
www.eeworm.com/read/422747/10613619
cpp position.cpp
// Position.cpp: implementation of the CPosition class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Position.h"
///////////////////
www.eeworm.com/read/422747/10613640
h position.h
// Position.h: interface for the CPosition class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_POSITION_H__5FB0F777_0857_47E4_97CE_1CEC0599EAF1__INCL
www.eeworm.com/read/422747/10613689
obj position.obj
www.eeworm.com/read/422517/10632539
hh position.hh
/* A Bison parser, made by GNU Bison 2.3. */
/* Positions for Bison parsers in C++
Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
This program is free software; yo
www.eeworm.com/read/277145/10659791
c position.c
/* this file is a part of amp software, (C) tomislav uzelac 1996,1997
*/
/* position.c ffwd/rew within a stream
*
* Creted by: Tomislav Uzelac, May 10 1997
*/
#include "amp.h"
#include "aud
www.eeworm.com/read/277145/10659797
h position.h
/* this file is a part of amp software, (C) tomislav uzelac 1996,1997
*/
extern int ffwd(struct AUDIO_HEADER *header, int nframes);
extern int rew(struct AUDIO_HEADER *header, int nframes);
#i
www.eeworm.com/read/349581/10815955
cpp position.cpp
#include "mathclass.h"
position
interpolate( m_real t, position const& a, position const& b )
{
position c;
c.p[0] = (1.0-t)*a.p[0] + t*b.p[0];
c.p[1] = (1.0-t)*a.p[1] + t*b.p[1];
c
www.eeworm.com/read/349581/10816036
h position.h
#ifndef POSITION_H
#define POSITION_H
class vector;
class unit_vector;
class matrix;
class transf;
class position
{
private:
m_real p[3];
// addtion
friend position& operator+=(