Blender V4.3
ordered_edge.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#include "BLI_ordered_edge.hh"
6
7namespace blender {
8
9std::ostream &operator<<(std::ostream &stream, const OrderedEdge &e)
10{
11 return stream << "OrderedEdge(" << e.v_low << ", " << e.v_high << ")";
12}
13
14} // namespace blender
ATTR_WARN_UNUSED_RESULT const BMVert const BMEdge * e
std::ostream & operator<<(std::ostream &stream, const eAlpha &space)
Definition BLI_color.cc:11