Home
last modified time | relevance | path

Searched refs:endCap (Results 1 – 25 of 557) sorted by relevance

12345678910>>...23

/dports/graphics/mupdf/mupdf-1.18.0-source/platform/java/src/com/artifex/mupdf/fitz/
H A DStrokeState.java27 …private native long newNative(int startCap, int dashCap, int endCap, int lineJoin, float lineWidth… in newNative() argument
39 public StrokeState(int startCap, int endCap, int lineJoin, float lineWidth, float miterLimit) { in StrokeState() argument
40 pointer = newNative(startCap, 0, endCap, lineJoin, lineWidth, miterLimit, 0, null); in StrokeState()
43 …public StrokeState(int startCap, int dashCap, int endCap, int lineJoin, float lineWidth, float mit… in StrokeState() argument
45 pointer = newNative(startCap, dashCap, endCap, lineJoin, lineWidth, miterLimit, dashPhase, dash); in StrokeState()
/dports/x11-toolkits/libgdiplus/libgdiplus-6.0.4/tests/
H A Dtestcustomlinecap.c36 LineCap endCap; in verifyCustomLineCap() local
52 assertEqualInt (endCap, LineCapFlat); in verifyCustomLineCap()
195 LineCap endCap; in test_setCustomLineCapStrokeCaps() local
205 GdipGetCustomLineCapStrokeCaps (cap, &startCap, &endCap); in test_setCustomLineCapStrokeCaps()
207 assertEqualInt (endCap, LineCapSquare); in test_setCustomLineCapStrokeCaps()
215 assertEqualInt (endCap, LineCapFlat); in test_setCustomLineCapStrokeCaps()
223 assertEqualInt (endCap, LineCapTriangle); in test_setCustomLineCapStrokeCaps()
231 assertEqualInt (endCap, LineCapRound); in test_setCustomLineCapStrokeCaps()
239 assertEqualInt (endCap, LineCapRound); in test_setCustomLineCapStrokeCaps()
302 assertEqualInt (endCap, LineCapRound); in test_setCustomLineCapStrokeCaps()
[all …]
H A Dtestpen.c49 LineCap endCap; in verifyPen() local
534 LineCap endCap; in test_setPenLineCap197819() local
554 GdipGetPenEndCap (pen, &endCap); in test_setPenLineCap197819()
567 GdipGetPenEndCap (pen, &endCap); in test_setPenLineCap197819()
580 GdipGetPenEndCap (pen, &endCap); in test_setPenLineCap197819()
593 GdipGetPenEndCap (pen, &endCap); in test_setPenLineCap197819()
606 GdipGetPenEndCap (pen, &endCap); in test_setPenLineCap197819()
716 LineCap endCap; in test_setPenEndCap() local
729 GdipGetPenEndCap (pen, &endCap); in test_setPenEndCap()
865 LineCap endCap; in test_getPenEndCap() local
[all …]
/dports/cad/digital/Digital-0.27/src/main/java/de/neemann/digital/draw/graphics/
H A DStyle.java170 stroke = new BasicStroke(thickness, builder.endCap, BasicStroke.JOIN_MITER, 10f, dash, 0f); in Style()
346 private int endCap = BasicStroke.CAP_SQUARE; field in Style.Builder
360 endCap = style.stroke.getEndCap(); in Builder()
405 private Builder setEndCap(int endCap) { in setEndCap() argument
406 this.endCap = endCap; in setEndCap()
/dports/java/jcommon/jcommon-1.0.23/src/main/java/org/jfree/xml/parser/coretypes/
H A DBasicStrokeReadHandler.java78 final int endCap = Integer.parseInt(attrs.getValue("endCap")); in startParsing() local
87 lineWidth, endCap, lineJoin, miterLimit, dashArray, dashPhase in startParsing()
91 this.stroke = new BasicStroke(lineWidth, endCap, lineJoin, miterLimit); in startParsing()
/dports/x11-toolkits/libgdiplus/libgdiplus-6.0.4/src/
H A Dcustomlinecap.c364 GdipSetCustomLineCapStrokeCaps (GpCustomLineCap *customCap, GpLineCap startCap, GpLineCap endCap) in GdipSetCustomLineCapStrokeCaps() argument
366 …p || startCap < LineCapFlat || startCap > LineCapTriangle || endCap < LineCapFlat || endCap > Line… in GdipSetCustomLineCapStrokeCaps()
370 customCap->end_cap = endCap; in GdipSetCustomLineCapStrokeCaps()
376 GdipGetCustomLineCapStrokeCaps (GpCustomLineCap *customCap, GpLineCap *startCap, GpLineCap *endCap) in GdipGetCustomLineCapStrokeCaps() argument
378 if (!customCap || !startCap || !endCap) in GdipGetCustomLineCapStrokeCaps()
382 *endCap = customCap->end_cap; in GdipGetCustomLineCapStrokeCaps()
H A Dcustomlinecap.h18 … GdipSetCustomLineCapStrokeCaps (GpCustomLineCap *customCap, GpLineCap startCap, GpLineCap endCap);
19 …dipGetCustomLineCapStrokeCaps (GpCustomLineCap *customCap, GpLineCap *startCap, GpLineCap *endCap);
H A Dpen.h65 GpStatus WINGDIPAPI GdipSetPenLineCap197819 (GpPen *pen, GpLineCap startCap, GpLineCap endCap, GpDa…
68 GpStatus WINGDIPAPI GdipSetPenEndCap (GpPen *pen, GpLineCap endCap);
69 GpStatus WINGDIPAPI GdipGetPenEndCap (GpPen *pen, GpLineCap *endCap);
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/tests/Drawing2D/
H A DCustomLineCapTests.cs104 public void SetThenGetStrokeCaps_Success(LineCap startCap, LineCap endCap) in SetThenGetStrokeCaps_Success() argument
109 customLineCap.SetStrokeCaps(startCap, endCap); in SetThenGetStrokeCaps_Success()
113 Assert.Equal(endCap, retrievedEndCap); in SetThenGetStrokeCaps_Success()
125 … public void SetStrokeCaps_InvalidLineCap_ThrowsArgumentException(LineCap startCap, LineCap endCap) in SetStrokeCaps_InvalidLineCap_ThrowsArgumentException() argument
130 …ertExtensions.Throws<ArgumentException>(null, () => customLineCap.SetStrokeCaps(startCap, endCap)); in SetStrokeCaps_InvalidLineCap_ThrowsArgumentException()
248 …umentException>(null, () => customLineCap.GetStrokeCaps(out LineCap startCap, out LineCap endCap)); in Disposed_MembersThrow()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/System/Drawing/Drawing2D/
H A DCustomLineCap.cs88 public void SetStrokeCaps(LineCap startCap, LineCap endCap) in SetStrokeCaps() argument
90 …ativeMethods.Gdip.GdipSetCustomLineCapStrokeCaps(new HandleRef(this, nativeCap), startCap, endCap); in SetStrokeCaps()
96 public void GetStrokeCaps(out LineCap startCap, out LineCap endCap) in GetStrokeCaps() argument
98 …hods.Gdip.GdipGetCustomLineCapStrokeCaps(new HandleRef(this, nativeCap), out startCap, out endCap); in GetStrokeCaps()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/drawinglayer/source/tools/
H A Demfppen.cxx54 , endCap(0) in EMFPPen()
134 s.ReadInt32(endCap); in Read()
135 SAL_INFO("drawinglayer", "EMF+\t\tendCap: 0x" << std::hex << endCap); in Read()
139 endCap = 0; in Read()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Drawing/System.Drawing/
H A DPen.cs45 private CustomLineCap endCap; field in System.Drawing.Pen
173 return endCap;
180 endCap = value;
441 p.endCap = endCap; in Clone()
508 public void SetLineCap (LineCap startCap, LineCap endCap, DashCap dashCap) in SetLineCap() argument
511 Status status = GDIPlus.GdipSetPenLineCap197819 (nativeObject, startCap, endCap, dashCap); in SetLineCap()
/dports/editors/libreoffice/libreoffice-7.2.6.2/drawinglayer/source/tools/
H A Demfppen.cxx61 , endCap(0) in EMFPPen()
242 s.ReadInt32(endCap); in Read()
243 …SAL_INFO("drawinglayer.emf", "EMF+\t\tendCap: " << LineCapTypeToString(endCap) << " (0x" << std::h… in Read()
247 endCap = 0; in Read()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Activities/Designers/
H A DStateMachineDesignerPaint.cs143 GraphicsPath endCap = null; in DrawConnector()
151 endCap = GetLineCap(endConnectorCap, capSize, out endCapInset); in DrawConnector()
155 …bool fill = (endCap != null && (((int)endConnectorCap % 2) == 0) && (endSegment[0].X == endSegment… in DrawConnector()
165 graphics.FillPath(penBrush, endCap); in DrawConnector()
178 if (endCap != null) in DrawConnector()
180 CustomLineCap customEndCap = new CustomLineCap(null, endCap); in DrawConnector()
198 if (endCap != null) in DrawConnector()
/dports/graphics/wdune/wdune-1.926/docs/german_workshop_documents/
H A Dkameras.wrl9 field SFBool endCap
128 endCap FALSE
223 endCap FALSE
/dports/graphics/wdune/wdune-1.926/docs/scripted_Nodes/
H A Dsuperextrusion_example.wrl9 field SFBool endCap
81 endCap FALSE
/dports/java/jcommon/jcommon-1.0.23/src/main/java/org/jfree/xml/writer/coretypes/
H A DBasicStrokeWriteHandler.java84 final int endCap = stroke.getEndCap(); in write() local
93 attribs.setAttribute("endCap", String.valueOf(endCap)); in write()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/gdiplus/
H A Dgdipluspen.h280 Status SetEndCap(LineCap endCap) in SetEndCap() argument
283 nativePen, endCap)); in SetEndCap()
285 Status SetLineCap(LineCap startCap, LineCap endCap, DashCap dashCap) in SetLineCap() argument
288 nativePen, startCap, endCap, dashCap)); in SetLineCap()
/dports/devel/mingw32-bin-msvcrt/mingw32-bin-msvcrt-r4.0.3.1.a4.0.3.1/include/gdiplus/
H A Dgdipluspen.h285 Status SetEndCap(LineCap endCap) in SetEndCap() argument
288 nativePen, endCap)); in SetEndCap()
290 Status SetLineCap(LineCap startCap, LineCap endCap, DashCap dashCap) in SetLineCap() argument
293 nativePen, startCap, endCap, dashCap)); in SetLineCap()
/dports/devel/mingw32-bin-msvcrt/mingw32-bin-msvcrt-r4.0.3.1.a4.0.3.1/mingw32/include/gdiplus/
H A Dgdipluspen.h285 Status SetEndCap(LineCap endCap) in SetEndCap() argument
288 nativePen, endCap)); in SetEndCap()
290 Status SetLineCap(LineCap startCap, LineCap endCap, DashCap dashCap) in SetLineCap() argument
293 nativePen, startCap, endCap, dashCap)); in SetLineCap()
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/gdiplus/
H A Dgdipluspen.h280 Status SetEndCap(LineCap endCap) in SetEndCap() argument
283 nativePen, endCap)); in SetEndCap()
285 Status SetLineCap(LineCap startCap, LineCap endCap, DashCap dashCap) in SetLineCap() argument
288 nativePen, startCap, endCap, dashCap)); in SetLineCap()
/dports/graphics/wdune/wdune-1.926/src/
H A DNodeExtrusion.h46 FieldIndex endCap; variable
95 fieldMacros(SFBool, endCap, ProtoExtrusion)
H A DNodeSuperExtrusion.h79 FieldIndex endCap; variable
149 fieldMacros(SFBool, endCap, ProtoSuperExtrusion)
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/examples/glShareTopology/
H A DsceneBase.h42 Options() : adaptive(true), endCap(kEndCapGregoryBasis) { } in Options()
45 int endCap; member
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/System/Drawing/
H A DPen.cs198 public void SetLineCap(LineCap startCap, LineCap endCap, DashCap dashCap) in SetLineCap() argument
206 unchecked((int)startCap), unchecked((int)endCap), unchecked((int)dashCap)); in SetLineCap()
259 int endCap = 0;
260 … int status = SafeNativeMethods.Gdip.GdipGetPenEndCap(new HandleRef(this, NativePen), out endCap);
263 return (LineCap)endCap;

12345678910>>...23