代码搜索:cube
找到约 2,811 项符合「cube」的源代码
代码结果 2,811
www.eeworm.com/read/461278/7230233
clw cube.clw
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CCubeView
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "cube.h"
www.eeworm.com/read/461278/7230234
aps cube.aps
www.eeworm.com/read/461278/7230238
exe cube.exe
www.eeworm.com/read/461278/7230240
cpp cube.cpp
// cube.cpp : Defines the class behaviors for the application.
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights
www.eeworm.com/read/461278/7230241
h cube.h
// cube.h : main header file for the CUBE application
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
www.eeworm.com/read/460131/7257250
pro cube.pro
CONFIG += opengl
HEADERS = cube.h
SOURCES = cube.cpp \
main.cpp
www.eeworm.com/read/460131/7257252
cpp cube.cpp
#include
#include "cube.h"
Cube::Cube(QWidget *parent, const char *name)
: QGLWidget(parent, name)
{
setFormat(QGLFormat(DoubleBuffer | DepthBuffer));
rotationX = 0;
www.eeworm.com/read/460131/7257253
h cube.h
#ifndef CUBE_H
#define CUBE_H
#include
class Cube : public QGLWidget
{
public:
Cube(QWidget *parent = 0, const char *name = 0);
protected:
void initializeGL();
void resizeGL(int
www.eeworm.com/read/458474/7296333
asm cube.asm
.486P
.Model Flat,StdCall ; 32 bit memory model
Option Scoped ; local labels are enabled, global labels inside
; PROC should be defined with double colons (LABEL::)
www.eeworm.com/read/458474/7296334