CGAL::Creator_uniform_d<Arg, Result>

Definition

The concept Creator_uniform_d<Arg, Result> defines types and operations for creating objects from two arguments of the same type.

#include <CGAL/function_objects.h>

Requirements

Result defines a constructor from three arguments: one d dimension and two Arg arguments.

Creator_uniform_d<Arg, Result>::argument_type
type of arguments; typedef to Arg.


Creator_uniform_d<Arg, Result>::result_type
type of object to create; typedef to Result.

result_type
c.operator() (
argument_type a1,
argument_type a2)
const
returns result_type(d, a1, a2).