代码搜索:Linelist
找到约 275 项符合「Linelist」的源代码
代码结果 275
www.eeworm.com/read/192080/5160225
h linelist.h
#ifndef _LINELIST_H
#define _LINELIST_H
#include "Line.h"
class Surface;
class LineList
{
public:
LineList();
void drawViewport( Surface& dst );
void add( const FixVec2& a,
www.eeworm.com/read/192080/5160248
cpp linelist.cpp
#include "LineList.h"
LineList::LineList() :
m_count(0),
m_ptr(0)
{
}
void LineList::add( const FixVec2& a, const FixVec2& b, int c )
{
m_ptr = (m_ptr+1) & (MAX_LINES-1);
m_lines[
www.eeworm.com/read/409921/2223875
c linelist.c
/* linelist.c
*
* Copyright (c) 1996-2001 Mike Gleason, NCEMRSoft.
* All rights reserved.
*
*/
#include "syshdrs.h"
/* Dynamically make a copy of a string. */
char *
StrDup(const cha