`

Changing the Thickness of the Stroking Pen:改变画笔的厚度

 
阅读更多

 

dashPhase is the offset to start the dashing pattern.

float strokeThickness = 5.0f;

// A solid stroke

BasicStroke stroke = new BasicStroke(strokeThickness);

g2d.setStroke(stroke);

drawShape(g2d);

// A dashed stroke

float miterLimit = 10f;

float[] dashPattern = {10f};

float dashPhase = 5f;

stroke = new BasicStroke(

strokeThickness, BasicStroke.CAP_BUTT,

BasicStroke.JOIN_MITER, miterLimit,

dashPattern, dashPhase);

g2d.setStroke(stroke);

drawShape(g2d);

分享到:
评论

相关推荐

    Gerber RS-274X

    The current Gerber ... Painting is a relic of the days of vector photoplotters, devices as obsolete as the electrical typewriter. We urge all users and developers to banish painting from our industry.

    PHOTOSHOP技巧

    此外,在图层混合模式中使用Multiply或Screen模式也可以快速改变图像间的叠加效果。 ### 五、画笔设置与路径应用 1. **画笔间距调整**:通过调整画笔的间距(Brush Spacing)可以在绘制时获得不同的纹理效果。例如...

    i915_drm_public.rar_True and False

    描述中的信息指出:“Returns true if the path effect is a dashed effect and we are stroking, otherwise it returns false.” 这是在描述一个函数的行为,该函数用于检测路径(path)上的效果是否为虚线(dashed...

    医院科室牌标牌中英文对照表.docx

    - 婴儿抚触中心 (Infant-stroking center) - 产房 (Obstetrical Ward) - 分娩室 (Delivery room) - 隔离分娩室 (Isolation delivery room) - 陪伴分娩室 (Delivery room with companion) 6. 其他科室: - ...

    CoreGraphics:CoreGraphics

    - **填充和描边(Filling and Stroking)**:使用`CGContextFillPath`和`CGContextStrokePath`分别填充路径内的区域和描边路径。 - **裁剪区域(Clipping Regions)**:通过设置裁剪路径,限制后续绘图操作的范围...

    Opengl绘制的图像字体

    2. **stroking和filling**:通过描边和填充路径来创建字符,这需要将字符转换为顶点数组。OpenGL可以使用`glLineWidth()`和`glPolygonMode()`等函数控制线条的宽度和填充样式。 3. **纹理映射**:使用GLUT(OpenGL...

    五时间构造分析TimeStructuringAnalysis.doc

    在这一理论框架下,时间构造分析关注的是人们如何利用时间进行不同类型的互动,并从中获取心理满足,尤其是“抚爱”或称为“stroking”。 抚爱在TA理论中被定义为一种积极的关注和认同,是人际交往中情感交流的基础...

    UVectorFont_fortfu1_文字矢量_underkj7_Vc_

    这一步可能涉及到路径操作,如stroking(描边)路径而不是filling(填充)。 3. **边框渲染**:为了呈现边框效果,程序需要对轮廓进行适当的加粗,这可以通过增加描边宽度来实现。同时,边框的颜色和透明度也是可...

    Linux-IO性能优化基础工具和实践

    Linux-IO性能优化基础工具和实践: 基础篇-Linux IO stack overview 基础篇-read syscall IO stack ...实践篇-IO性能优化之short stroking 实践篇-IO性能优化之减小元数据写入 实践篇-IO性能优化之SSD减少机械盘的IOPS

    Quartz 2D Programming Guide

    绘制路径时,可以通过设置不同的参数来影响路径的填充(Filling)和描边(Stroking),以及路径闭合(Closing a Subpath)等行为。在路径的创建和绘制中,可以通过函数来设置混合模式(Blend Modes),以此来控制...

Global site tag (gtag.js) - Google Analytics