Home
last modified time | relevance | path

Searched refs:endCapStyle (Results 1 – 25 of 52) sorted by relevance

123

/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/operation/buffer/
H A DBufferParameters.java80 private int endCapStyle = CAP_ROUND; field in BufferParameters
112 int endCapStyle) in BufferParameters() argument
115 setEndCapStyle(endCapStyle); in BufferParameters()
128 int endCapStyle, in BufferParameters() argument
133 setEndCapStyle(endCapStyle); in BufferParameters()
225 return endCapStyle; in getEndCapStyle()
235 public void setEndCapStyle(int endCapStyle) in setEndCapStyle() argument
237 this.endCapStyle = endCapStyle; in setEndCapStyle()
H A DBufferOp.java237 int endCapStyle) in bufferOp() argument
241 bufOp.setEndCapStyle(endCapStyle); in bufferOp()
282 public void setEndCapStyle(int endCapStyle) in setEndCapStyle() argument
284 bufParams.setEndCapStyle(endCapStyle); in setEndCapStyle()
/dports/graphics/geos/geos-3.9.1/include/geos/operation/buffer/
H A DBufferParameters.h119 BufferParameters(int quadrantSegments, EndCapStyle endCapStyle);
130 BufferParameters(int quadrantSegments, EndCapStyle endCapStyle,
189 return endCapStyle; in getEndCapStyle()
204 endCapStyle = style; in setEndCapStyle()
302 EndCapStyle endCapStyle; variable
H A DBufferOp.h164 int endCapStyle = BufferParameters::CAP_ROUND);
/dports/graphics/geos/geos-3.9.1/src/operation/buffer/
H A DBufferParameters.cpp37 endCapStyle(CAP_ROUND), in BufferParameters()
47 endCapStyle(CAP_ROUND), in BufferParameters()
60 endCapStyle(CAP_ROUND), in BufferParameters()
76 endCapStyle(CAP_ROUND), in BufferParameters()
/dports/math/R-cran-sf/sf/R/
H A Dgeom-transformers.R70 get_first_sfg(st_buffer(st_sfc(x), dist, nQuadSegs = nQuadSegs, endCapStyle = endCapStyle,
73 .process_style_opts = function(endCapStyle, joinStyle, mitreLimit, singleSide) { argument
75 if (endCapStyle == "ROUND" && joinStyle == "ROUND" && mitreLimit == 1
78 ecs = match(endCapStyle, c("ROUND", "FLAT", "SQUARE"))
85 styls$endCapStyle = ecs
92 endCapStyle = "ROUND", joinStyle = "ROUND", mitreLimit = 1.0, argument
123 styles = .process_style_opts(endCapStyle, joinStyle, mitreLimit, singleSide)
125 endCapStyle = rep(styles$endCapStyle, length.out = length(x))
135 endCapStyle = endCapStyle, joinStyle = joinStyle, mitreLimit = mitreLimit,
144 endCapStyle = "ROUND", joinStyle = "ROUND", mitreLimit = 1.0, argument
[all …]
H A DRcppExports.R204 … bufferDist, nQuadSegs, dTolerance, preserveTopology, bOnlyEdges = 1L, endCapStyle = 0L, joinStyle… argument
205 … sfc, bufferDist, nQuadSegs, dTolerance, preserveTopology, bOnlyEdges, endCapStyle, joinStyle, mit…
/dports/graphics/qgis-ltr/qgis-3.16.16/python/plugins/processing/algs/qgis/
H A DBuffer.py30 …ring(feedback, context, sink, distance, field, useField, source, dissolve, segments, endCapStyle=1, argument
60 …buffered_geometries.append(inGeom.buffer(float(value), segments, endCapStyle, joinStyle, miterLimi…
84 outGeom = inGeom.buffer(float(value), segments, endCapStyle, joinStyle, miterLimit)
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/libcore/
H A DLineStyle.h76 CapStyle endCapStyle=CAP_ROUND,
88 _endCapStyle(endCapStyle), in m_width()
130 CapStyle endCapStyle() const { in endCapStyle() function
H A DDynamicShape.cpp165 CapStyle startCapStyle, CapStyle endCapStyle, in lineStyle() argument
169 noClose, startCapStyle, endCapStyle, joinStyle, in lineStyle()
H A DDynamicShape.h100 CapStyle endCapStyle=CAP_ROUND,
/dports/graphics/qgis/qgis-3.22.3/python/plugins/processing/algs/qgis/
H A DBuffer.py31 …ring(feedback, context, sink, distance, field, useField, source, dissolve, segments, endCapStyle=1, argument
61 …ometries.append(inGeom.buffer(float(value), segments, Qgis.EndCapStyle(endCapStyle), Qgis.JoinStyl…
85 …outGeom = inGeom.buffer(float(value), segments, Qgis.EndCapStyle(endCapStyle), Qgis.JoinStyle(join…
/dports/math/R-cran-sf/sf/man/
H A Dgeos_unary.Rd25 endCapStyle = "ROUND",
67 \item{endCapStyle}{character; style of line ends, one of 'ROUND', 'FLAT', 'SQUARE'}
109 \code{st_buffer} computes a buffer around this geometry/each geometry. If any of \code{endCapStyle},
149 plot(st_buffer(l1, dist = 1, endCapStyle="ROUND"), reset = FALSE, main = "endCapStyle: ROUND")
151 plot(st_buffer(l1, dist = 1, endCapStyle="FLAT"), reset = FALSE, main = "endCapStyle: FLAT")
153 plot(st_buffer(l1, dist = 1, endCapStyle="SQUARE"), reset = FALSE, main = "endCapStyle: SQUARE")
/dports/math/jts/jts-jts-1.18.1/modules/tests/src/main/java/org/locationtech/jtstest/geomop/
H A DBufferValidatedGeometryOperation.java45 private int endCapStyle; field in BufferValidatedGeometryOperation
97 endCapStyle = Integer.parseInt((String) args[2]); in parseArgs()
/dports/graphics/qgis/qgis-3.22.3/src/analysis/processing/
H A Dqgsalgorithmbuffer.cpp97 …const Qgis::EndCapStyle endCapStyle = static_cast< Qgis::EndCapStyle >( 1 + parameterAsInt( parame… in processAlgorithm() local
140 …QgsGeometry outputGeometry = f.geometry().buffer( distance, segments, endCapStyle, joinStyle, mite… in processAlgorithm()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/analysis/processing/
H A Dqgsalgorithmbuffer.cpp97 …QgsGeometry::EndCapStyle endCapStyle = static_cast< QgsGeometry::EndCapStyle >( 1 + parameterAsInt… in processAlgorithm() local
140 …QgsGeometry outputGeometry = f.geometry().buffer( distance, segments, endCapStyle, joinStyle, mite… in processAlgorithm()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/geom/
H A DGeometry.java1249 public Geometry buffer(double distance, int quadrantSegments, int endCapStyle) { in buffer() argument
1250 return BufferOp.bufferOp(this, distance, quadrantSegments, endCapStyle); in buffer()
/dports/graphics/qgis/qgis-3.22.3/src/core/geometry/
H A Dqgsgeometryengine.h154 …ractGeometry *buffer( double distance, int segments, Qgis::EndCapStyle endCapStyle, Qgis::JoinStyl…
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/geometry/
H A Dqgsgeometryengine.h116 …virtual QgsAbstractGeometry *buffer( double distance, int segments, int endCapStyle, int joinStyle…
/dports/graphics/qgis/qgis-3.22.3/src/3d/symbols/
H A Dqgsline3dsymbol_p.cpp119 const Qgis::EndCapStyle endCapStyle = Qgis::EndCapStyle::Round; in processFeature() local
133 …QgsAbstractGeometry *buffered = engine.buffer( width / 2., nSegments, endCapStyle, joinStyle, mitr… in processFeature()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/3d/symbols/
H A Dqgsline3dsymbol_p.cpp117 const QgsGeometry::EndCapStyle endCapStyle = QgsGeometry::CapRound; in processFeature() local
131 …QgsAbstractGeometry *buffered = engine.buffer( width / 2., nSegments, endCapStyle, joinStyle, mitr… in processFeature()
/dports/graphics/geos/geos-3.9.1/src/geom/
H A DGeometry.cpp513 Geometry::buffer(double p_distance, int quadrantSegments, int endCapStyle) const in buffer()
515 …urn std::unique_ptr<Geometry>(BufferOp::bufferOp(this, p_distance, quadrantSegments, endCapStyle)); in buffer()
/dports/databases/postgis32/postgis-3.2.0/postgis/
H A Dlwgeom_geos.c959 int endCapStyle = DEFAULT_ENDCAP_STYLE; in buffer() local
1022 endCapStyle = ENDCAP_ROUND; in buffer()
1027 endCapStyle = ENDCAP_FLAT; in buffer()
1031 endCapStyle = ENDCAP_SQUARE; in buffer()
1114 endCapStyle, joinStyle, mitreLimit); in buffer()
1119 if (GEOSBufferParams_setEndCapStyle(bufferparams, endCapStyle) && in buffer()
/dports/databases/postgis30/postgis-3.0.4/postgis/
H A Dlwgeom_geos.c898 int endCapStyle = DEFAULT_ENDCAP_STYLE; in buffer() local
962 endCapStyle = ENDCAP_ROUND; in buffer()
967 endCapStyle = ENDCAP_FLAT; in buffer()
971 endCapStyle = ENDCAP_SQUARE; in buffer()
1054 endCapStyle, joinStyle, mitreLimit); in buffer()
1059 if (GEOSBufferParams_setEndCapStyle(bufferparams, endCapStyle) && in buffer()
/dports/databases/postgis25/postgis-2.5.5/postgis/
H A Dlwgeom_geos.c820 int endCapStyle = DEFAULT_ENDCAP_STYLE; in buffer() local
879 endCapStyle = ENDCAP_ROUND; in buffer()
884 endCapStyle = ENDCAP_FLAT; in buffer()
888 endCapStyle = ENDCAP_SQUARE; in buffer()
971 endCapStyle, joinStyle, mitreLimit); in buffer()
978 if (GEOSBufferParams_setEndCapStyle(bufferparams, endCapStyle) && in buffer()

123