You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
833 B
37 lines
833 B
2 years ago
|
C Copyright(C) 1999-2020 National Technology & Engineering Solutions
|
||
|
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
||
|
C NTESS, the U.S. Government retains certain rights in this software.
|
||
|
C
|
||
|
C See packages/seacas/LICENSE for details
|
||
|
|
||
|
C=======================================================================
|
||
|
SUBROUTINE PLTPTM(N,MASK,X,Y)
|
||
|
DIMENSION X(*),Y(*),MASK(*)
|
||
|
include 'izbit.inc'
|
||
|
|
||
|
J = 0
|
||
|
J1 = J
|
||
|
KM = 0
|
||
|
2120 IF (.NOT. (J.LT.N)) GO TO 2130
|
||
|
JN = MIN(N-J,32)
|
||
|
KM = KM + 1
|
||
|
M = MASK(KM)
|
||
|
J = J + JN
|
||
|
IF (M.EQ.0) THEN
|
||
|
GO TO 2120
|
||
|
|
||
|
END IF
|
||
|
|
||
|
DO 2140 K = 1,JN
|
||
|
IF (IAND(M,IZBIT(K)).NE.0) THEN
|
||
|
CALL PLTPNT(1,X(J1+K),Y(J1+K))
|
||
|
END IF
|
||
|
|
||
|
2140 CONTINUE
|
||
|
GO TO 2120
|
||
|
|
||
|
2130 CONTINUE
|
||
|
RETURN
|
||
|
|
||
|
END
|