OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vertex1
(Results
1 - 2
of
2
) sorted by null
/external/ceres-solver/internal/ceres/
graph_algorithms.h
291
const Vertex
vertex1
= *it;
local
292
forest->AddVertex(
vertex1
, graph.VertexWeight(
vertex1
));
293
disjoint_set[
vertex1
] =
vertex1
;
295
const HashSet<Vertex>& neighbors = graph.Neighbors(
vertex1
);
300
if (
vertex1
>= vertex2) {
303
const double weight = graph.EdgeWeight(
vertex1
, vertex2);
304
weighted_edges.push_back(make_pair(weight, make_pair(
vertex1
, vertex2)));
317
const Vertex
vertex1
= edge.first
local
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp
52
static inline float leftSide(const FloatPoint&
vertex1
, const FloatPoint& vertex2, const FloatPoint& point)
54
return ((point.x() -
vertex1
.x()) * (vertex2.y() -
vertex1
.y())) - ((vertex2.x() -
vertex1
.x()) * (point.y() -
vertex1
.y()));
69
const FloatPoint&
vertex1
= edge.
vertex1
();
local
71
float dy = vertex2.y() -
vertex1
.y();
81
intersectionX = (
vertex1
.y() < vertex2.y()) ?
vertex1
.x() : vertex2.x()
473
const FloatPoint&
vertex1
= edge.
vertex1
();
local
[
all
...]
Completed in 74 milliseconds