代码搜索:camera
找到约 5,548 项符合「camera」的源代码
代码结果 5,548
www.eeworm.com/read/427490/8940170
cpp camera.cpp
/* Copyright (c) 2007 Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (t
www.eeworm.com/read/427490/8940208
h camera.h
/* Copyright (c) 2007 Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (t
www.eeworm.com/read/427300/8952774
cpp camera.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed thi
www.eeworm.com/read/185981/8969192
cpp camera.cpp
//***********************************************************************//
// //
// - "Talk to me like I'm a 3 year old!" Programming Lessons - //
//
www.eeworm.com/read/185981/8969207
h camera.h
#ifndef _CAMERA_H
#define _CAMERA_H
// This is our camera class
class CCamera {
public:
// Our camera constructor
CCamera();
// These are are data access functions for our camera's
www.eeworm.com/read/382123/9047932
ico camera.ico
www.eeworm.com/read/184417/9101422
cc camera.cc
//Camera.cc
#include "Camera.h"
Camera::Camera(Enum CType)
{
int i;
Type=CType;
KeepMatrix=true;
for(i=0; i
www.eeworm.com/read/184417/9101461
h camera.h
//Camera.h
#ifndef CAMERA_H
#define CAMERA_H
#include "Node.h"
class Camera: public Node
{
public:
Camera(Enum CType);
void Render();
void SetValuev(Enum PName, float *v);
void SetValue(En
www.eeworm.com/read/184320/9110400
cs camera.cs
using System;
using System.Collections;
using Microsoft.DirectX;
using Microsoft.DirectX.Direct3D;
namespace GameEngine
{
///
/// Summary description for Camera.
///
www.eeworm.com/read/282090/9120403
h camera.h
// window system independent camera view code
typedef enum
{
cd_wire,
cd_solid,
cd_texture,
cd_light,
cd_blend
} camera_draw_mode;
typedef struct
{
int width, height;
qboo