search

  classid="CLSID:369303C2-D7AC-11D0-89D5-00A0C90833E6"
style="positiion:absolute;top:0;left:0;width:320;height:200"
>


...

绘图指令分类:
(一)常见形状
1.矩形类 //rotation是以度为单位的旋转角度
Rect(x ,y, width, height, rotation) //矩形
Oval(x ,y, width, height, rotation) //椭圆
RoundRect(x ,y, width, height, arcWidth, arcHeight, rotation)
2.弧形类
Arc(x ,y, width, height, startAngle, arcAngle, rotation) //弧形
Pie(x ,y, width, height, startAngle, arcAngle, rotation) //饼图
3.多边形类
Polygon(nPoints, x1, y1, x2, y2, [x3, y3, ....], rotation) //闭合
Polyline(nPoints, x1, y1, x2, y2, [xn, yn, ....], rotation) //不闭合
(二)效果函数
1.线条效果
SetLineColor(r, g, b) //设置画线颜色
SetLineStyle(style) //style=(1:实线;2:虚线;0:隐藏)
2.填充效果
SetFillColor(r, g, b, backr, backg, backb)
SetFillStyle(style) //style=(1:实心;2:透明;3:-;4:|;5:\;6:/;7:+;8:x)
(三)文字输出函数
SetFont('字体',width,height,r,g,b) //设置字体
Text('要输出的文字内容', x,y,z) //输出文字


控制函数 //定义后在<script></script>里使用。
引用格式:DirectDraw.FunctionName()
rotate(x-rotation, y-rotation, z-rotation) //旋转
scale(x-scale,y-scale,z-scale) //缩放
translate(x-coordinate,y-coordinate,z-coordinate) //平移
setIdentity() //复原
clear() //清除,清除后无法恢复!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
学习Python绘图的速成指南:绘制冰墩墩的代码实例学习Python绘图的速成指南:绘制冰墩墩的代码实例Jan 13, 2024 pm 02:00 PM

快速上手Python绘图:画出冰墩墩的代码示例Python是一种简单易学且功能强大的编程语言,通过使用Python的绘图库,我们可以轻松地实现各种绘图需求。在本篇文章中,我们将使用Python的绘图库matplotlib来画出冰墩墩的简单图形。冰墩墩是一只拥有可爱形象的熊猫,非常受小朋友们的喜爱。首先,我们需要安装matplotlib库。你可以通过在终端运行

html的width是什么意思html的width是什么意思Jun 03, 2021 pm 02:15 PM

在html5中,width的意思是宽度,width属性定义元素内容区的宽度,在内容区外面可以增加内边距、边框和外边距,只需要给元素设置“元素{width:数值}”即可。

揭秘Canvas API:从简单绘图到高级特效无所不包揭秘Canvas API:从简单绘图到高级特效无所不包Jan 17, 2024 am 09:44 AM

CanvasAPI是HTML5提供的一个强大的绘图工具,可以实现从基础绘图到高级特效的各种功能。本文将带您深入了解CanvasAPI的使用方法,并提供具体的代码示例。基础绘图CanvasAPI最基础的就是绘制简单的图形,比如矩形、圆形、直线等。下面是一个创建矩形并填充颜色的代码示例:constcanvas=document.getElementB

1分钟了解word绘图的用法!1分钟了解word绘图的用法!Mar 20, 2024 pm 09:10 PM

通常,我们在word软件中不仅会编辑文字,还会插入一些图案和形状;Word软件可是我们在办公中离不开的软件;它这么强大,当然也能进行绘画啦!那么,我们该怎么完成word绘图呢?word绘画工具在哪里呢?该如何使用呢?这里简单和大家介绍一下,供大家参考,希望能有所帮助。步骤如下:1、首先,我们打开电脑上的Word软件;然后,我们新建一个空白的word文档;这时候,我们能在这里进行文字编辑,也可以进行图案绘画,直接点击文本即可。2、接着,我们选择上方【导航栏】中的【插入】的按钮;然后,我们选择【形状

学习并掌握常见的canvas框架:绘图和动画制作的入门指南学习并掌握常见的canvas框架:绘图和动画制作的入门指南Jan 17, 2024 am 10:52 AM

入门canvas框架:学习使用常见的canvas框架进行绘图和动画制作,需要具体代码示例随着前端技术的快速发展,网页设计中的动态效果日益重要。而canvas作为一种用于在浏览器上绘制图形的HTML元素,已经成为了实现各种动画效果和游戏开发的重要工具。为了更加高效地使用canvas,许多优秀的canvas框架应运而生。本文将介绍一些常见的canvas框架,并提

excel绘图应该如何制作excel绘图应该如何制作Mar 21, 2024 am 09:30 AM

如果当老板需要数据汇报时,我们能在短时间内做出一份简明且正确的表格,会让我们在职场上加分不少,而想要把excel表格做的简洁明了,excel绘图这个工具是少不了的。通过使用excel绘图,可以使表格的边框划分的更加明晰,小编现在就带大家看一下该如何操作。1.首先让我们打开安装好的MicrosoftOfficeExcel软件,具体如图所示。2.然后,在最上方的“开始”工具栏中找到绘图边框,具体如图所示。3.然后点击展开绘图边框,在其中找到线条样式,选择一种我们想要的线条样式,具体如图所示。4.接下

CSS 维度属性详解:height 和 widthCSS 维度属性详解:height 和 widthOct 21, 2023 pm 12:42 PM

CSS维度属性详解:height和width在前端开发中,CSS是一种强大的样式定义语言。其中,height和width是两个最基本的维度属性,用于定义元素的高度和宽度。本文将对这两个属性进行详细解析,并提供具体的代码示例。一、height属性height属性用于定义元素的高度。可以使用像素(pixel)、百分比(percentage)或者

Python绘制图表的进阶技巧与实用技法Python绘制图表的进阶技巧与实用技法Sep 27, 2023 pm 01:09 PM

Python绘制图表的进阶技巧与实用技法引言:在数据可视化领域,绘制图表是非常重要的一环。Python作为一门强大的编程语言,提供了丰富的图表绘制工具和库,如Matplotlib、Seaborn和Plotly等。本文将介绍一些Python绘制图表的进阶技巧和实用技法,并提供具体的代码示例,帮助读者更好地掌握数据可视化的技能。一、使用Matplotlib自定义

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function