D7 一般把栈叫堆栈;数据结构上的堆和栈是两个不同的东西; Unit {Queue(队列),先进先出;Stack(堆栈),后进先出}unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, ...
Delphi XE 仅仅是学习记录 unit 开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; typ ...
一、底层知识背景 1.1 GPU和CPU的区别? 主流 CPU(Central Processing Unit,中央处理器)芯片上有四级缓存,消耗了大量晶体管,在运行时需要大量电力;主流 GPU(Graphics Processing Unit,图形处理器)芯片最多有两层缓存,且 GPU 可以利用晶 ...
分类:
其他好文 时间:
2021-03-05 13:14:06
阅读次数:
0
SVG 意为可缩放矢量图形(Scalable Vector Graphics)。 SVG 使用 XML 格式定义图像。 svg 的子标签 矩形<rect>、 圆形<circle> 椭圆 <ellipse> 线 <line> 路径 <path> 多边形 <polygon> 折线 <polyline> ...
分类:
其他好文 时间:
2021-02-27 13:04:16
阅读次数:
0
unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Unit2; type TMyProc = procedure of obj ...
分类:
其他好文 时间:
2021-01-27 13:59:43
阅读次数:
0
在学习《C语言程序设计案例教程》的时候需要使用EasyX,需要使用Visual Studio开发环境。在C程序中使用#include <graphics.h>的时候出现了如下错误: #include "pch.h" #include <graphics.h> #include <math.h> #i ...
分类:
其他好文 时间:
2021-01-27 13:13:28
阅读次数:
0
svg SVG是一种基于 XML 的图像文件格式,它的英文全称为Scalable Vector Graphics,意思为可缩放的矢量图形 入门案例:绘制点、矩形、直线和圆形 https://www.youbaobao.xyz/datav-res/examples/test-svg.html ~ <! ...
分类:
其他好文 时间:
2021-01-26 12:42:58
阅读次数:
0
server端 unit ServerMainFormUnit; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.C ...
graphics类 来源:Python程序设计(第三版)约翰 策勒(John Zelle)配套资料 以我的Python3.9为例,放到你下载的Python相对应的位置, 我的是放在..\Python39\Lib目录下 以下是graphics.py类的内容,可以开个记事本复制进去,后缀改.txt为.p ...
分类:
编程语言 时间:
2021-01-22 11:46:03
阅读次数:
0
类中的对象如何作为参数传入函数 只需要将类作为形参传入,接着就可在函数定义时直接运用该类中的对象了 例子,其中用到的 graphics.py 类 from graphics import * win = GraphWin('test', 300, 300) # 函数定义, 设置窗口背景色并且在窗口中 ...
分类:
编程语言 时间:
2021-01-22 11:45:14
阅读次数:
0