Operator =.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(face_object), | intent(inout) | :: | lhs | Left hand side. |
||
| type(face_object), | intent(in) | :: | rhs | Right hand side. |
pure subroutine face_assign_face(lhs, rhs)
!< Operator `=`.
class(face_object), intent(inout) :: lhs !< Left hand side.
type(face_object), intent(in) :: rhs !< Right hand side.
lhs%area = rhs%area
lhs%normal = rhs%normal
endsubroutine face_assign_face