Home
last modified time | relevance | path

Searched refs:world_centery (Results 1 – 25 of 37) sorted by relevance

12

/dports/cad/geda/geda-gaf-1.8.2/libgeda/include/libgeda/
H A Dprototype.h74 void o_arc_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
109 void o_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
126 void o_box_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
133 void o_bus_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
145 void o_circle_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object…
162 void o_complex_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *objec…
176 void o_line_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
193 void o_net_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
206 void o_path_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
238 void o_pin_mirror_world(TOPLEVEL *toplevel, int world_centerx, int world_centery, OBJECT *object);
[all …]
/dports/cad/lepton-eda/lepton-eda-1.9.17/liblepton/src/
H A Dpath_object.c458 int world_centery, in lepton_path_object_rotate() argument
475 section->x1 -= world_centerx; section->y1 -= world_centery; in lepton_path_object_rotate()
476 section->x2 -= world_centerx; section->y2 -= world_centery; in lepton_path_object_rotate()
479 section->x1 += world_centerx; section->y1 += world_centery; in lepton_path_object_rotate()
480 section->x2 += world_centerx; section->y2 += world_centery; in lepton_path_object_rotate()
486 section->x3 -= world_centerx; section->y3 -= world_centery; in lepton_path_object_rotate()
492 section->x3 += world_centerx; section->y3 += world_centery; in lepton_path_object_rotate()
512 int world_centery, in lepton_path_object_mirror() argument
H A Dbus_object.c456 gint world_centery, in lepton_bus_object_rotate() argument
471 lepton_bus_object_translate (object, -world_centerx, -world_centery); in lepton_bus_object_rotate()
491 lepton_bus_object_translate (object, world_centerx, world_centery); in lepton_bus_object_rotate()
505 gint world_centery, in lepton_bus_object_mirror() argument
512 lepton_bus_object_translate (object, -world_centerx, -world_centery); in lepton_bus_object_mirror()
518 lepton_bus_object_translate (object, world_centerx, world_centery); in lepton_bus_object_mirror()
H A Dline_object.c519 int world_centery, in lepton_line_object_rotate() argument
543 lepton_line_object_translate (object, -world_centerx, -world_centery); in lepton_line_object_rotate()
566 lepton_line_object_translate (object, world_centerx, world_centery); in lepton_line_object_rotate()
584 int world_centery, in lepton_line_object_mirror() argument
591 lepton_line_object_translate (object, -world_centerx, -world_centery); in lepton_line_object_mirror()
598 lepton_line_object_translate (object, world_centerx, world_centery); in lepton_line_object_mirror()
H A Dbox_object.c595 int world_centery, in lepton_box_object_rotate() argument
621 lepton_box_object_translate (object, -world_centerx, -world_centery); in lepton_box_object_rotate()
644 lepton_box_object_translate (object, world_centerx, world_centery); in lepton_box_object_rotate()
661 int world_centery, in lepton_box_object_mirror() argument
672 lepton_box_object_translate (object, -world_centerx, -world_centery); in lepton_box_object_mirror()
692 lepton_box_object_translate (object, world_centerx, world_centery); in lepton_box_object_mirror()
H A Dpin_object.c544 int world_centery, in lepton_pin_object_rotate() argument
557 lepton_pin_object_translate (object, -world_centerx, -world_centery); in lepton_pin_object_rotate()
577 lepton_pin_object_translate (object, world_centerx, world_centery); in lepton_pin_object_rotate()
591 int world_centery, in lepton_pin_object_mirror() argument
598 lepton_pin_object_translate (object, -world_centerx, -world_centery); in lepton_pin_object_mirror()
604 lepton_pin_object_translate (object, world_centerx, world_centery); in lepton_pin_object_mirror()
H A Dnet_object.c398 int world_centery, in lepton_net_object_rotate() argument
411 lepton_net_object_translate (object, -world_centerx, -world_centery); in lepton_net_object_rotate()
431 lepton_net_object_translate (object, world_centerx, world_centery); in lepton_net_object_rotate()
445 int world_centery, in lepton_net_object_mirror() argument
452 lepton_net_object_translate (object, -world_centerx, -world_centery); in lepton_net_object_mirror()
458 lepton_net_object_translate (object, world_centerx, world_centery); in lepton_net_object_mirror()
H A Dcircle_object.c471 gint world_centery, in lepton_circle_object_rotate() argument
496 object->circle->center_y -= world_centery; in lepton_circle_object_rotate()
507 object->circle->center_y += world_centery; in lepton_circle_object_rotate()
524 gint world_centery, in lepton_circle_object_mirror() argument
/dports/cad/geda/geda-gaf-1.8.2/libgeda/src/
H A Do_bus_basic.c323 int world_centerx, int world_centery, int angle, in o_bus_rotate_world() argument
332 o_bus_translate_world(toplevel, -world_centerx, -world_centery, object); in o_bus_rotate_world()
346 o_bus_translate_world(toplevel, world_centerx, world_centery, object); in o_bus_rotate_world()
360 int world_centerx, int world_centery, OBJECT *object) in o_bus_mirror_world() argument
363 o_bus_translate_world(toplevel, -world_centerx, -world_centery, object); in o_bus_mirror_world()
369 o_bus_translate_world(toplevel, world_centerx, world_centery, object); in o_bus_mirror_world()
H A Do_pin_basic.c320 int world_centery, int angle, in o_pin_rotate_world() argument
329 o_pin_translate_world(toplevel, -world_centerx, -world_centery, object); in o_pin_rotate_world()
343 o_pin_translate_world(toplevel, world_centerx, world_centery, object); in o_pin_rotate_world()
357 int world_centerx, int world_centery, OBJECT *object) in o_pin_mirror_world() argument
360 o_pin_translate_world(toplevel, -world_centerx, -world_centery, object); in o_pin_mirror_world()
366 o_pin_translate_world(toplevel, world_centerx, world_centery, object); in o_pin_mirror_world()
H A Do_path_basic.c400 int world_centerx, int world_centery, int angle, in o_path_rotate_world() argument
412 section->x1 -= world_centerx; section->y1 -= world_centery; in o_path_rotate_world()
413 section->x2 -= world_centerx; section->y2 -= world_centery; in o_path_rotate_world()
416 section->x1 += world_centerx; section->y1 += world_centery; in o_path_rotate_world()
417 section->x2 += world_centerx; section->y2 += world_centery; in o_path_rotate_world()
423 section->x3 -= world_centerx; section->y3 -= world_centery; in o_path_rotate_world()
425 section->x3 += world_centerx; section->y3 += world_centery; in o_path_rotate_world()
446 int world_centery, OBJECT *object) in o_path_mirror_world() argument
H A Do_box_basic.c469 int world_centerx, int world_centery, int angle, in o_box_rotate_world() argument
492 object->box->upper_y -= world_centery; in o_box_rotate_world()
494 object->box->lower_y -= world_centery; in o_box_rotate_world()
512 object->box->upper_y += world_centery; in o_box_rotate_world()
514 object->box->lower_y += world_centery; in o_box_rotate_world()
534 int world_centerx, int world_centery, in o_box_mirror_world() argument
542 object->box->upper_y -= world_centery; in o_box_mirror_world()
544 object->box->lower_y -= world_centery; in o_box_mirror_world()
560 object->box->upper_y += world_centery; in o_box_mirror_world()
562 object->box->lower_y += world_centery; in o_box_mirror_world()
H A Do_net_basic.c304 int world_centerx, int world_centery, int angle, in o_net_rotate_world() argument
313 o_net_translate_world(toplevel, -world_centerx, -world_centery, in o_net_rotate_world()
328 o_net_translate_world(toplevel, world_centerx, world_centery, object); in o_net_rotate_world()
342 int world_centery, OBJECT *object) in o_net_mirror_world() argument
345 o_net_translate_world(toplevel, -world_centerx, -world_centery, in o_net_mirror_world()
352 o_net_translate_world(toplevel, world_centerx, world_centery, object); in o_net_mirror_world()
H A Do_picture.c571 int world_centerx, int world_centery, int angle, in o_picture_rotate_world() argument
592 object->picture->upper_y -= world_centery; in o_picture_rotate_world()
594 object->picture->lower_y -= world_centery; in o_picture_rotate_world()
612 object->picture->upper_y += world_centery; in o_picture_rotate_world()
614 object->picture->lower_y += world_centery; in o_picture_rotate_world()
635 int world_centerx, int world_centery, in o_picture_mirror_world() argument
655 object->picture->upper_y -= world_centery; in o_picture_mirror_world()
657 object->picture->lower_y -= world_centery; in o_picture_mirror_world()
673 object->picture->upper_y += world_centery; in o_picture_mirror_world()
675 object->picture->lower_y += world_centery; in o_picture_mirror_world()
/dports/cad/lepton-eda/lepton-eda-1.9.17/liblepton/include/liblepton/
H A Dpath_object.h50 int world_centery,
55 int world_centery,
H A Dbox_object.h80 int world_centery,
89 int world_centery,
H A Dnet_object.h69 int world_centery,
81 int world_centery,
H A Dline_object.h67 int world_centery,
76 int world_centery,
H A Dcircle_object.h60 gint world_centery,
69 gint world_centery,
H A Dbus_object.h65 gint world_centery,
77 gint world_centery,
H A Darc_object.h74 int world_centery,
83 int world_centery,
H A Dpin_object.h87 int world_centery,
96 int world_centery,
H A Dpicture_object.h62 int world_centery,
67 int world_centery,
H A Dtext_object.h93 int world_centery,
97 int world_centery,
H A Dcomponent_object.h112 int world_centery,
117 int world_centery,

12