Plane

Concrete subclass of Shape representing a plane.

Contents

Description

Plane represents the shape of a plane. It does not have a volume, but it is used to force a user-defined primary grid plane in maxwell_run.

Construction

shape = Plane(normal_axis, intercept)
shape = Plane(normal_axis, intercept, dl_max)

Example

% Create an instance of Plane.
shape = Plane(Axis.y, 100);
% Use the constructed shape in maxwell_run().
[E, H] = maxwell_run({INITIAL ARGUMENTS}, 'OBJ', {'vacuum', 'none', 1.0}, shape, {REMAINING ARGUMENTS});

See Also

Rectangle, Line, Point, ZeroVolShape, maxwell_run